mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 23:17:02 +02:00
Changed "Quit" menu item to "Test" (Quit should apparently be added
automatically).
This commit is contained in:
parent
66a8e40712
commit
012c2c9c9f
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ Application::Application(int& argc, char** argv) : QApplication(argc, argv) {
|
||||||
// simple menu bar (will only appear on OS X, for now)
|
// simple menu bar (will only appear on OS X, for now)
|
||||||
QMenuBar* menuBar = new QMenuBar();
|
QMenuBar* menuBar = new QMenuBar();
|
||||||
QMenu* fileMenu = menuBar->addMenu("File");
|
QMenu* fileMenu = menuBar->addMenu("File");
|
||||||
fileMenu->addAction("Quit", this, SLOT(testSlot()));
|
fileMenu->addAction("Test", this, SLOT(testSlot()));
|
||||||
}
|
}
|
||||||
|
|
||||||
void Application::testSlot() {
|
void Application::testSlot() {
|
||||||
|
|
Loading…
Reference in a new issue