diff options
author | Michele Calgaro <[email protected]> | 2024-01-07 19:46:37 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-07 19:46:37 +0900 |
commit | 13a90d07994f44f6eedc8d43b8d745341eb31497 (patch) | |
tree | b0c2269b13b181ce971a080a7086480ac169bf0b /src/kchmdialogchooseurlfromlist.cpp | |
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 <[email protected]>
Diffstat (limited to 'src/kchmdialogchooseurlfromlist.cpp')
-rw-r--r-- | src/kchmdialogchooseurlfromlist.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/kchmdialogchooseurlfromlist.cpp b/src/kchmdialogchooseurlfromlist.cpp index bb50a13..a6b7738 100644 --- a/src/kchmdialogchooseurlfromlist.cpp +++ b/src/kchmdialogchooseurlfromlist.cpp @@ -46,11 +46,11 @@ KCHMDialogChooseUrlFromList::KCHMDialogChooseUrlFromList(const TQStringList& url hlayout->addWidget (bok); hlayout->addWidget (bcancel); - connect( m_urlsList, TQT_SIGNAL( doubleClicked ( TQListViewItem *, const TQPoint &, int) ), this, TQT_SLOT( onDoubleClicked ( TQListViewItem *, const TQPoint &, int) ) ); - connect( m_urlsList, TQT_SIGNAL( currentChanged ( TQListViewItem *) ), this, TQT_SLOT( onCurrentChanged ( TQListViewItem *) ) ); + connect( m_urlsList, TQ_SIGNAL( doubleClicked ( TQListViewItem *, const TQPoint &, int) ), this, TQ_SLOT( onDoubleClicked ( TQListViewItem *, const TQPoint &, int) ) ); + connect( m_urlsList, TQ_SIGNAL( currentChanged ( TQListViewItem *) ), this, TQ_SLOT( onCurrentChanged ( TQListViewItem *) ) ); - connect( bok, TQT_SIGNAL( clicked () ), this, TQT_SLOT( accept() ) ); - connect( bcancel, TQT_SIGNAL( clicked () ), this, TQT_SLOT( reject() ) ); + connect( bok, TQ_SIGNAL( clicked () ), this, TQ_SLOT( accept() ) ); + connect( bcancel, TQ_SIGNAL( clicked () ), this, TQ_SLOT( reject() ) ); m_acceptedurl = TQString(); } |