Changed "Quit" menu item to "Test" (Quit should apparently be added

automatically).
This commit is contained in:
Andrzej Kapolka 2013-05-10 12:11:32 -07:00
parent 66a8e40712
commit 012c2c9c9f

View file

@ -14,7 +14,7 @@ Application::Application(int& argc, char** argv) : QApplication(argc, argv) {
// simple menu bar (will only appear on OS X, for now)
QMenuBar* menuBar = new QMenuBar();
QMenu* fileMenu = menuBar->addMenu("File");
fileMenu->addAction("Quit", this, SLOT(testSlot()));
fileMenu->addAction("Test", this, SLOT(testSlot()));
}
void Application::testSlot() {