diff options
Diffstat (limited to 'src/multibuffer.h')
-rw-r--r-- | src/multibuffer.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/multibuffer.h b/src/multibuffer.h index a481574f..f6f40ea6 100644 --- a/src/multibuffer.h +++ b/src/multibuffer.h @@ -35,13 +35,14 @@ class ReadOnlyPart; class KURL; typedef TQMap< KURL, KParts::Part* > BufferMap; -typedef TQMap< KParts::Part*, QPair<int, int> > ActivationMap; +typedef TQMap< KParts::Part*, TQPair<int, int> > ActivationMap; -class MultiBuffer : public QSplitter +class MultiBuffer : public TQSplitter { Q_OBJECT + TQ_OBJECT public: - MultiBuffer( TQWidget * parent = 0 ); + MultiBuffer( TQWidget * tqparent = 0 ); virtual ~MultiBuffer(); KParts::Part *activeBuffer() const; @@ -54,7 +55,7 @@ public: KParts::Part* createPart( const TQString &mimeType, const TQString &partType, const TQString &className, - const TQString &preferredName = TQString::null ); + const TQString &preferredName = TQString() ); KParts::Part* openURL( const KURL &url ); bool closeURL( const KURL &url ); @@ -86,4 +87,4 @@ private: #endif -// kate: space-indent on; indent-width 4; tab-width 4; replace-tabs on +// kate: space-indent on; indent-width 4; tab-width 4; tqreplace-tabs on |