diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-30 16:28:59 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-31 22:26:22 +0900 |
commit | f476b77d1dda2e0e45cdf065b1907215c90fccd6 (patch) | |
tree | dec65915640fe8ca8f67f9c490575d939b89d5df /src/gvcore/externaltooldialog.cpp | |
parent | 5eb453b778dba31ee1c5956ca9c9d6483c1cd620 (diff) | |
download | gwenview-f476b77d.tar.gz gwenview-f476b77d.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 97ea83f8b23cc80320874b97b671c736a83c378a)
Diffstat (limited to 'src/gvcore/externaltooldialog.cpp')
-rw-r--r-- | src/gvcore/externaltooldialog.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/gvcore/externaltooldialog.cpp b/src/gvcore/externaltooldialog.cpp index bd58298..5ccc277 100644 --- a/src/gvcore/externaltooldialog.cpp +++ b/src/gvcore/externaltooldialog.cpp @@ -273,16 +273,16 @@ ExternalToolDialog::ExternalToolDialog(TQWidget* parent) d->mContent->mToolListView->viewport()->installEventFilter( new ToolListViewFilterObject(this, d)); - connect( d->mContent->mToolListView, TQT_SIGNAL(selectionChanged(TQListViewItem*)), - this, TQT_SLOT(slotSelectionChanged(TQListViewItem*)) ); - connect( d->mContent->mAddButton, TQT_SIGNAL(clicked()), - this, TQT_SLOT(addTool()) ); - connect( d->mContent->mDeleteButton, TQT_SIGNAL(clicked()), - this, TQT_SLOT(deleteTool()) ); - connect( d->mContent->mHelp, TQT_SIGNAL(leftClickedURL()), - this, TQT_SLOT(showCommandHelp()) ); - connect( d->mContent->mMoreTools, TQT_SIGNAL(leftClickedURL(const TQString&)), - this, TQT_SLOT(openURL(const TQString&)) ); + connect( d->mContent->mToolListView, TQ_SIGNAL(selectionChanged(TQListViewItem*)), + this, TQ_SLOT(slotSelectionChanged(TQListViewItem*)) ); + connect( d->mContent->mAddButton, TQ_SIGNAL(clicked()), + this, TQ_SLOT(addTool()) ); + connect( d->mContent->mDeleteButton, TQ_SIGNAL(clicked()), + this, TQ_SLOT(deleteTool()) ); + connect( d->mContent->mHelp, TQ_SIGNAL(leftClickedURL()), + this, TQ_SLOT(showCommandHelp()) ); + connect( d->mContent->mMoreTools, TQ_SIGNAL(leftClickedURL(const TQString&)), + this, TQ_SLOT(openURL(const TQString&)) ); TDEListView* view=d->mContent->mToolListView; if (view->firstChild()) { |