diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-05 10:34:19 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-05 10:34:19 +0900 |
commit | 89135300a977ebccbb5928797afabfdd8a4222fb (patch) | |
tree | 9a3cd1c364643b0608bd1db3290a9885e5e6f5b3 /src/knemod/interfacetray.cpp | |
parent | 8e3901701aa74deea424f0d4e096a58094362cb8 (diff) | |
download | knemo-89135300a977ebccbb5928797afabfdd8a4222fb.tar.gz knemo-89135300a977ebccbb5928797afabfdd8a4222fb.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/knemod/interfacetray.cpp')
-rw-r--r-- | src/knemod/interfacetray.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/knemod/interfacetray.cpp b/src/knemod/interfacetray.cpp index 17f4b7e..cd1daf5 100644 --- a/src/knemod/interfacetray.cpp +++ b/src/knemod/interfacetray.cpp @@ -49,16 +49,16 @@ InterfaceTray::InterfaceTray( const TQString& ifname, "KNemo - " + ifname ); popup->insertItem( SmallIcon( "knemo" ), i18n( "&About KNemo" ), this, - TQT_SLOT( showAboutDialog() ) ); + TQ_SLOT( showAboutDialog() ) ); popup->insertItem( i18n( "&Report Bug..." ), this, - TQT_SLOT( showReportBugDialog() ) ); + TQ_SLOT( showReportBugDialog() ) ); popup->insertSeparator(); popup->insertItem( SmallIcon( "configure" ), i18n( "&Configure KNemo..." ), this, - TQT_SIGNAL( configSelected() ) ); + TQ_SIGNAL( configSelected() ) ); popup->insertItem( SmallIcon( "ksysguard" ), i18n( "&Open Traffic Plotter" ), this, - TQT_SLOT( showGraph() ) ); + TQ_SLOT( showGraph() ) ); } InterfaceTray::~InterfaceTray() |