summaryrefslogtreecommitdiffstats
path: root/tdeui/tdemainwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'tdeui/tdemainwindow.h')
-rw-r--r--tdeui/tdemainwindow.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/tdeui/tdemainwindow.h b/tdeui/tdemainwindow.h
index cca8e64ac..446b9c937 100644
--- a/tdeui/tdemainwindow.h
+++ b/tdeui/tdemainwindow.h
@@ -541,8 +541,8 @@ public:
* this function) a connection needs to be made to let TDEMainWindow
* know when that status (hidden/shown) of the statusbar has changed.
* For example:
- * connect(action, TQT_SIGNAL(activated()),
- * tdemainwindow, TQT_SLOT(setSettingsDirty()));
+ * connect(action, TQ_SIGNAL(activated()),
+ * tdemainwindow, TQ_SLOT(setSettingsDirty()));
* Otherwise the status (hidden/show) of the statusbar might not be saved
* by TDEMainWindow.
* @since 3.2
@@ -683,7 +683,7 @@ public slots:
* This slot can be connected dirrectly to the action to configure shortcuts.
* This is very simple to do that by adding a single line
* \code
- * KStdAction::configureToolbars( guiFactory(), TQT_SLOT( configureToolbars() ),
+ * KStdAction::configureToolbars( guiFactory(), TQ_SLOT( configureToolbars() ),
* actionCollection() );
* \endcode
*
@@ -734,8 +734,8 @@ public slots:
* \code
* TDEIconLoader &loader = *TDEGlobal::iconLoader();
* TQPixmap pixmap = loader.loadIcon( "help" );
- * toolBar(0)->insertButton( pixmap, 0, TQT_SIGNAL(clicked()),
- * this, TQT_SLOT(appHelpActivated()), true, i18n("Help") );
+ * toolBar(0)->insertButton( pixmap, 0, TQ_SIGNAL(clicked()),
+ * this, TQ_SLOT(appHelpActivated()), true, i18n("Help") );
* \endcode
*
*/