summaryrefslogtreecommitdiffstats
path: root/tdemdi/tdemdichildview.h
diff options
context:
space:
mode:
Diffstat (limited to 'tdemdi/tdemdichildview.h')
-rw-r--r--tdemdi/tdemdichildview.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/tdemdi/tdemdichildview.h b/tdemdi/tdemdichildview.h
index 81143679a..4db44ed83 100644
--- a/tdemdi/tdemdichildview.h
+++ b/tdemdi/tdemdichildview.h
@@ -94,7 +94,7 @@ class KMdiChildViewPrivate;
* flags = KMdi::Hide;
* }
* // set the accelerators for Toplevel MDI mode (each toplevel window needs its own accels
- * connect( m_pParent, TQT_SIGNAL(childViewIsDetachedNow(TQWidget*)), this, TQT_SLOT(initKeyAccel(TQWidget*)) );
+ * connect( m_pParent, TQ_SIGNAL(childViewIsDetachedNow(TQWidget*)), this, TQ_SLOT(initKeyAccel(TQWidget*)) );
*
* m_pParent->addWindow( pMDICover, flags);
* // correct the default settings of KMdi ('cause we haven't a tab order for subwidget focuses)
@@ -109,7 +109,7 @@ class KMDI_EXPORT KMdiChildView : public TQWidget
{
friend class KMdiMainFrm;
friend class KMdiChildFrm;
- Q_OBJECT
+ TQ_OBJECT
// attributes
protected:
@@ -465,7 +465,7 @@ protected:
virtual void closeEvent( TQCloseEvent *e );
/**
- * It only catches TQEvent::KeyPress events there. If a Qt::Key_Tab is pressed, the internal MDI focus
+ * It only catches TQEvent::KeyPress events there. If a TQt::Key_Tab is pressed, the internal MDI focus
* handling is called. That means if the last focusable child widget of this is called, it will jump to the
* first focusable child widget of this.
* See KMdiChildView::setFirstFocusableChildWidget and KMdiChildView::lastFirstFocusableChildWidget
@@ -611,5 +611,3 @@ inline KMdiChildFrm *KMdiChildView::mdiParent() const
}
#endif //_TDEMDI_CHILD_VIEW_H_
-
-// kate: space-indent off; replace-tabs off; indent-mode csands; tab-width 4;