From faf33629bb6562a6f43f930afafe4b22e9cdb60b Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 13 Jan 2024 11:29:06 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro --- xparts/mozilla/kshell.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'xparts/mozilla/kshell.cpp') diff --git a/xparts/mozilla/kshell.cpp b/xparts/mozilla/kshell.cpp index 6417973e..152469f3 100644 --- a/xparts/mozilla/kshell.cpp +++ b/xparts/mozilla/kshell.cpp @@ -22,7 +22,7 @@ public: setCentralWidget( m_host->widget() ); - connect(m_host, TQT_SIGNAL( actionsInitialized() ), this, TQT_SLOT( mergeGUI() ) ); + connect(m_host, TQ_SIGNAL( actionsInitialized() ), this, TQ_SLOT( mergeGUI() ) ); #if 1 m_partProcess = new TDEProcess; @@ -31,10 +31,10 @@ public: m_partProcess->start(); #endif - KStdAction::quit( this, TQT_SLOT( close() ), actionCollection() ); + KStdAction::quit( this, TQ_SLOT( close() ), actionCollection() ); TDESelectAction *s = new TDESelectAction( "http://www.kde.org" , 0, actionCollection(), "location" ); - connect( s, TQT_SIGNAL(activated( const TQString& ) ), this, TQT_SLOT( slotOpenUrl( const TQString & ) ) ); + connect( s, TQ_SIGNAL(activated( const TQString& ) ), this, TQ_SLOT( slotOpenUrl( const TQString & ) ) ); s->setEditable(true); } virtual ~ShellWindow() -- cgit v1.2.1