be consistent in naming of components
This commit is contained in:
parent
2229b86053
commit
86d1ef8492
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue