be consistent in naming of components

This commit is contained in:
laserpants 2016-03-27 10:11:08 +03:00
parent 2229b86053
commit 86d1ef8492
1 changed files with 11 additions and 12 deletions

View File

@ -93,7 +93,6 @@ void MainWindow::_initMenu() const
buttons->addAction("Raised Button");
buttons->addAction("Icon Button");
components->addAction("Checkbox");
components->addAction("Dialog");
components->addAction("Menus");
components->addAction("List");
@ -102,13 +101,13 @@ void MainWindow::_initMenu() const
QMenu *switches = new QMenu("Switches");
components->addMenu(switches);
switches->addAction("CheckBox");
switches->addAction("Checkbox");
switches->addAction("Radio Button");
switches->addAction("Toggle");
components->addAction("Table");
components->addAction("Tabs");
components->addAction("Textfield");
components->addAction("Text Field");
menuBar()->addMenu(file);
menuBar()->addMenu(components);