|
@@ -52,10 +52,12 @@ HelpMenu::HelpMenu() : QMenu()
|
52
|
52
|
aboutTypicaAction->setObjectName("aboutTypicaAction");
|
53
|
53
|
addAction(aboutTypicaAction);
|
54
|
54
|
connect(aboutTypicaAction, SIGNAL(triggered()), this, SLOT(displayAboutTypica()));
|
|
55
|
+#if 0
|
55
|
56
|
QAction *licenseAction = new QAction(tr("License Information"), this);
|
56
|
57
|
licenseAction->setObjectName("licenseAction");
|
57
|
58
|
addAction(licenseAction);
|
58
|
59
|
connect(licenseAction, SIGNAL(triggered()), this, SLOT(displayLicenseWindow()));
|
|
60
|
+#endif
|
59
|
61
|
}
|
60
|
62
|
|
61
|
63
|
@ When "About Typica" is selected from the menu, we display an about box. This
|