summaryrefslogtreecommitdiffstats
path: root/kdevdesigner/designer/mainwindowactions.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2022-02-07 10:20:15 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2022-02-07 10:20:37 +0900
commit8ee4eb2f1d2e8d2ce2c4561b17e2dc0db3b147d3 (patch)
tree7e1c1d969f132808de352298298f8cf210331aa6 /kdevdesigner/designer/mainwindowactions.cpp
parent6279394cc3cc565fd9a0ec7282d7fd89f8008da5 (diff)
downloadtdevelop-8ee4eb2f1d2e8d2ce2c4561b17e2dc0db3b147d3.tar.gz
tdevelop-8ee4eb2f1d2e8d2ce2c4561b17e2dc0db3b147d3.zip
Removed TQT_NON_COMMERCIAL check and related code.r14.0.12
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 29ea77f8216e8cb351241c420270271959ed4cee)
Diffstat (limited to 'kdevdesigner/designer/mainwindowactions.cpp')
-rw-r--r--kdevdesigner/designer/mainwindowactions.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/kdevdesigner/designer/mainwindowactions.cpp b/kdevdesigner/designer/mainwindowactions.cpp
index c937236b..f94eeb49 100644
--- a/kdevdesigner/designer/mainwindowactions.cpp
+++ b/kdevdesigner/designer/mainwindowactions.cpp
@@ -999,14 +999,6 @@ void MainWindow::setupHelpActions()
actionHelpAboutTQt->setWhatsThis( whatsThisFrom( "Help|About TQt" ) );
connect( actionHelpAboutTQt, TQT_SIGNAL( activated() ), TQT_TQOBJECT(this), TQT_SLOT( helpAboutTQt() ) );
-#if 0 //defined(TQT_NON_COMMERCIAL)
- // ### not used anymore -- should be deleted?
- actionHelpRegister = new DesignerAction( i18n("Register TQt"), TQPixmap(), i18n("&Register TQt..."), 0, TQT_TQOBJECT(this), 0 );
- actionHelpRegister->setStatusTip( i18n("Opens a web browser at the evaluation form on www.trolltech.com") );
- actionHelpRegister->setWhatsThis( i18n("Register with Trolltech") );
- connect( actionHelpRegister, TQT_SIGNAL( activated() ), TQT_TQOBJECT(this), TQT_SLOT( helpRegister() ) );
-#endif
-
actionHelpWhatsThis = new DesignerAction( i18n("What's This?"), TQIconSet( whatsthis_image, whatsthis_image ),
i18n("What's This?"), SHIFT + Key_F1, TQT_TQOBJECT(this), 0 );
actionHelpWhatsThis->setStatusTip( i18n("\"What's This?\" context sensitive help") );
@@ -1027,11 +1019,6 @@ void MainWindow::setupHelpActions()
menu->insertSeparator();
actionHelpAbout->addTo( menu );
actionHelpAboutTQt->addTo( menu );
-#if 0 //defined(TQT_NON_COMMERCIAL)
- // ### not used anymore -- should be deleted?
- actionHelpRegister->addTo( menu );
-#endif
-
menu->insertSeparator();
actionHelpWhatsThis->addTo( menu );
}