diff options
Diffstat (limited to 'karbon/karbon_part.cpp')
-rw-r--r-- | karbon/karbon_part.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/karbon/karbon_part.cpp b/karbon/karbon_part.cpp index e3abb201..527a80f0 100644 --- a/karbon/karbon_part.cpp +++ b/karbon/karbon_part.cpp @@ -67,8 +67,8 @@ KarbonPart::KarbonPart( TQWidget* parentWidget, const char* widgetName, dcop = 0L; m_commandHistory = new VCommandHistory( this ); - connect( m_commandHistory, TQT_SIGNAL( documentRestored() ), this, TQT_SLOT( slotDocumentRestored() ) ); - connect( m_commandHistory, TQT_SIGNAL( commandExecuted( VCommand * ) ), this, TQT_SLOT( slotCommandExecuted( VCommand * ) ) ); + connect( m_commandHistory, TQ_SIGNAL( documentRestored() ), this, TQ_SLOT( slotDocumentRestored() ) ); + connect( m_commandHistory, TQ_SIGNAL( commandExecuted( VCommand * ) ), this, TQ_SLOT( slotCommandExecuted( VCommand * ) ) ); initConfig(); @@ -659,7 +659,7 @@ KarbonPart::mergeNativeFormat( const TQString &file ) void KarbonPart::addShell( KoMainWindow *shell ) { - connect( shell, TQT_SIGNAL( documentSaved() ), m_commandHistory, TQT_SLOT( documentSaved() ) ); + connect( shell, TQ_SIGNAL( documentSaved() ), m_commandHistory, TQ_SLOT( documentSaved() ) ); KoDocument::addShell( shell ); } |