diff options
author | Michele Calgaro <[email protected]> | 2024-01-07 19:46:37 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-09 10:51:34 +0900 |
commit | 5a0966ca1f9829702643b8e991be29636aed8d5a (patch) | |
tree | 92d84a30c3aca1034b25629a25c9071da1fd7d71 /src/kchmcontentswindow.cpp | |
parent | d2f01bb5cdfc087c691837782a4f8daaacc70f42 (diff) | |
download | kchmviewer-5a0966ca1f9829702643b8e991be29636aed8d5a.tar.gz kchmviewer-5a0966ca1f9829702643b8e991be29636aed8d5a.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 13a90d07994f44f6eedc8d43b8d745341eb31497)
Diffstat (limited to 'src/kchmcontentswindow.cpp')
-rw-r--r-- | src/kchmcontentswindow.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kchmcontentswindow.cpp b/src/kchmcontentswindow.cpp index 200df61..eeaef20 100644 --- a/src/kchmcontentswindow.cpp +++ b/src/kchmcontentswindow.cpp @@ -42,11 +42,11 @@ KCHMContentsWindow::KCHMContentsWindow(TQWidget *parent, const char *name) header()->hide(); setShowToolTips( false ); - connect( this, TQT_SIGNAL( onItem ( TQListViewItem * ) ), this, TQT_SLOT( slotOnItem( TQListViewItem * ) ) ); + connect( this, TQ_SIGNAL( onItem ( TQListViewItem * ) ), this, TQ_SLOT( slotOnItem( TQListViewItem * ) ) ); connect( this, - TQT_SIGNAL( contextMenuRequested( TQListViewItem *, const TQPoint& , int ) ), + TQ_SIGNAL( contextMenuRequested( TQListViewItem *, const TQPoint& , int ) ), this, - TQT_SLOT( slotContextMenuRequested ( TQListViewItem *, const TQPoint &, int ) ) ); + TQ_SLOT( slotContextMenuRequested ( TQListViewItem *, const TQPoint &, int ) ) ); new KCHMListItemTooltip( this ); |