diff options
Diffstat (limited to 'xparts/mozilla/kshell.cpp')
-rw-r--r-- | xparts/mozilla/kshell.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xparts/mozilla/kshell.cpp b/xparts/mozilla/kshell.cpp index 4f012dbb..e3f87279 100644 --- a/xparts/mozilla/kshell.cpp +++ b/xparts/mozilla/kshell.cpp @@ -22,7 +22,7 @@ public: setCentralWidget( m_host->widget() ); - connect(m_host, SIGNAL( actionsInitialized() ), this, SLOT( mergeGUI() ) ); + connect(m_host, TQT_SIGNAL( actionsInitialized() ), this, TQT_SLOT( mergeGUI() ) ); #if 1 m_partProcess = new KProcess; @@ -31,10 +31,10 @@ public: m_partProcess->start(); #endif - KStdAction::quit( this, SLOT( close() ), actionCollection() ); + KStdAction::quit( this, TQT_SLOT( close() ), actionCollection() ); KSelectAction *s = new KSelectAction( "http://www.kde.org" , 0, actionCollection(), "location" ); - connect( s, SIGNAL(activated( const QString& ) ), this, SLOT( slotOpenUrl( const QString & ) ) ); + connect( s, TQT_SIGNAL(activated( const TQString& ) ), this, TQT_SLOT( slotOpenUrl( const TQString & ) ) ); s->setEditable(true); } virtual ~ShellWindow() @@ -42,7 +42,7 @@ public: delete m_partProcess; } public slots: - void slotOpenUrl( const QString &url ) + void slotOpenUrl( const TQString &url ) { kdDebug() << "this=" << this; kdDebug() << "url=" << url << endl; |