| 1257 | } |
| 1258 | |
| 1259 | QWidget *MainWindow::createContainer(QWidget *parent, int index, const QDomElement &element, QAction *&containerAction) |
| 1260 | { |
| 1261 | // ensure we don't have toolbar accelerators that clash with other stuff |
| 1262 | QWidget *createdContainer = KXmlGuiWindow::createContainer(parent, index, element, containerAction); |
| 1263 | if (element.tagName() == QLatin1String("ToolBar")) { |
| 1264 | KAcceleratorManager::setNoAccel(createdContainer); |
| 1265 | } |
| 1266 | return createdContainer; |
| 1267 | } |
| 1268 | |
| 1269 | void MainWindow::saveNewToolbarConfig() |
| 1270 | { |
nothing calls this directly
no outgoing calls
no test coverage detected