diff options
author | Timothy Pearson <[email protected]> | 2011-12-15 15:30:51 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-15 15:30:51 -0600 |
commit | d737fa5621adb2f9504b4119a151615eeacba574 (patch) | |
tree | b219ca93c9910b179c0891e9b0e353f94465b03a /KMFSysTray/kmfsystray.cpp | |
parent | 88c5eb48afe6160b21916f2c4bb779de9c8992a0 (diff) | |
download | kmyfirewall-d737fa5621adb2f9504b4119a151615eeacba574.tar.gz kmyfirewall-d737fa5621adb2f9504b4119a151615eeacba574.zip |
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'KMFSysTray/kmfsystray.cpp')
-rw-r--r-- | KMFSysTray/kmfsystray.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/KMFSysTray/kmfsystray.cpp b/KMFSysTray/kmfsystray.cpp index 28454d7..4d18c9b 100644 --- a/KMFSysTray/kmfsystray.cpp +++ b/KMFSysTray/kmfsystray.cpp @@ -21,7 +21,7 @@ // QT includes #include <tqlcdnumber.h> -#include <tqlayout.h> +#include <layout.h> // KDE includes #include <kglobal.h> @@ -54,7 +54,7 @@ KMFSysTray::KMFSysTray( TQWidget* w ) : KSystemTray ( w ) , DCOPObject( "KMFSys setPixmap( baseIcon ); // Connect the watch deamon - connect( watch, TQT_SIGNAL( sigUpdateActive( bool ) ), this, TQT_SLOT( slotSetRunningtqStatus( bool ) ) ); + connect( watch, TQT_SIGNAL( sigUpdateActive( bool ) ), this, TQT_SLOT( slotSetRunningStatus( bool ) ) ); connect( watch, TQT_SIGNAL( sigUpdateRuleCount( const TQString&, const TQString&, int ) ), this, TQT_SIGNAL( sigUpdateRuleCount( const TQString&, const TQString&, int ) ) ); @@ -86,7 +86,7 @@ void KMFSysTray::initMenu() { } -void KMFSysTray::slotSetRunningtqStatus( bool on ) { +void KMFSysTray::slotSetRunningStatus( bool on ) { if ( on ) { baseIcon = KSystemTray::loadIcon( "kmyfirewall" ); } else { |