summaryrefslogtreecommitdiffstats
path: root/tdeui/tdemainwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'tdeui/tdemainwindow.h')
-rw-r--r--tdeui/tdemainwindow.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/tdeui/tdemainwindow.h b/tdeui/tdemainwindow.h
index 856590ab9..82b29e548 100644
--- a/tdeui/tdemainwindow.h
+++ b/tdeui/tdemainwindow.h
@@ -98,7 +98,7 @@ class DCOPObject;
class TDEUI_EXPORT TDEMainWindow : public TQMainWindow, public KXMLGUIBuilder, virtual public KXMLGUIClient
{
friend class KMWSessionManaged;
- Q_OBJECT
+ TQ_OBJECT
public:
/**
@@ -235,7 +235,7 @@ public:
*
* That means clients could simply do the following:
* \code
- * if (kapp->isRestored()){
+ * if (tdeApp->isRestored()){
* int n = 1;
* while (TDEMainWindow::canBeRestored(n)){
* (new childMW)->restore(n);
@@ -260,7 +260,7 @@ public:
* for backwards compatibility with 3.1 and 3.0 branches:
*
* \code
- * if (kapp->isRestored())
+ * if (tdeApp->isRestored())
* RESTORE(childMW)
* else {
* // create default application as usual
@@ -275,7 +275,7 @@ public:
* use the templated kRestoreMainWindows global functions:
*
* \code
- * if (kapp->isRestored())
+ * if (tdeApp->isRestored())
* kRestoreMainWindows< childMW1, childMW2, childMW3 >();
* else {
* // create default application as usual
@@ -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
@@ -668,7 +668,7 @@ public:
*
*/
// KDE4 to be removed
- TQSize sizeForCentralWidgetSize(TQSize size) KDE_DEPRECATED;
+ TQSize sizeForCentralWidgetSize(TQSize size) TDE_DEPRECATED;
/**
* @internal
@@ -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
*
*/