diff options
Diffstat (limited to 'src/multibuffer.cpp')
-rw-r--r-- | src/multibuffer.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/multibuffer.cpp b/src/multibuffer.cpp index 33110d01..fe988c02 100644 --- a/src/multibuffer.cpp +++ b/src/multibuffer.cpp @@ -57,12 +57,12 @@ MultiBuffer::MultiBuffer( TQWidget *parent ) API::getInstance() ->languageSupport() ) { setOrientation( lang->splitOrientation() ); - connect( lang, TQT_SIGNAL( splitOrientationChanged( Qt::Orientation ) ), - this, TQT_SLOT( setOrientation( Qt::Orientation ) ) ); + connect( lang, TQ_SIGNAL( splitOrientationChanged( TQt::Orientation ) ), + this, TQ_SLOT( setOrientation( TQt::Orientation ) ) ); } else { - setOrientation( Qt::Vertical ); + setOrientation( TQt::Vertical ); } } @@ -147,7 +147,7 @@ void MultiBuffer::registerURL( const KURL &url, KParts::Part *part ) void MultiBuffer::registerDelayedActivation( KParts::Part *part, int line, int col ) { - m_delayedActivation[ part ] = tqMakePair( line, col ); + m_delayedActivation[ part ] = qMakePair( line, col ); } KParts::Part* MultiBuffer::createPart( const TQString &mimeType, @@ -221,8 +221,8 @@ void MultiBuffer::show() // We're managing the view deletion by being its parent, // don't let the part self-destruct - disconnect( view, TQT_SIGNAL( destroyed() ), - document, TQT_SLOT( slotWidgetDestroyed() ) ); + disconnect( view, TQ_SIGNAL( destroyed() ), + document, TQ_SLOT( slotWidgetDestroyed() ) ); document->insertChildClient( view ); PartController::getInstance() ->integrateTextEditorPart( document ); @@ -249,7 +249,7 @@ void MultiBuffer::show() TQSplitter::show(); } -void MultiBuffer::setOrientation( Qt::Orientation orientation ) +void MultiBuffer::setOrientation( TQt::Orientation orientation ) { TQSplitter::setOrientation( orientation ); } |