diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-07 19:46:37 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-07 19:46:37 +0900 |
commit | 13a90d07994f44f6eedc8d43b8d745341eb31497 (patch) | |
tree | b0c2269b13b181ce971a080a7086480ac169bf0b /src/tde | |
parent | 50e174961141962046c59391fd648ed004cb3a08 (diff) | |
download | kchmviewer-13a90d07994f44f6eedc8d43b8d745341eb31497.tar.gz kchmviewer-13a90d07994f44f6eedc8d43b8d745341eb31497.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/tde')
-rw-r--r-- | src/tde/kchmviewwindow_tdehtmlpart.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tde/kchmviewwindow_tdehtmlpart.cpp b/src/tde/kchmviewwindow_tdehtmlpart.cpp index 3a57e35..ad4a617 100644 --- a/src/tde/kchmviewwindow_tdehtmlpart.cpp +++ b/src/tde/kchmviewwindow_tdehtmlpart.cpp @@ -46,11 +46,11 @@ KCHMViewWindow_TDEHTMLPart::KCHMViewWindow_TDEHTMLPart( TQTabWidget * parent ) invalidate(); - connect( browserExtension(), TQT_SIGNAL( openURLRequest( const KURL &, const KParts::URLArgs & ) ), - this, TQT_SLOT ( onOpenURLRequest( const KURL &, const KParts::URLArgs & )) ); + connect( browserExtension(), TQ_SIGNAL( openURLRequest( const KURL &, const KParts::URLArgs & ) ), + this, TQ_SLOT ( onOpenURLRequest( const KURL &, const KParts::URLArgs & )) ); - connect( this, TQT_SIGNAL ( popupMenu ( const TQString &, const TQPoint &) ), - this, TQT_SLOT ( onPopupMenu ( const TQString &, const TQPoint &) ) ); + connect( this, TQ_SIGNAL ( popupMenu ( const TQString &, const TQPoint &) ), + this, TQ_SLOT ( onPopupMenu ( const TQString &, const TQPoint &) ) ); } |