summaryrefslogtreecommitdiffstats
path: root/src/knemod/knemodaemon.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-12-16 09:56:23 -0600
committerTimothy Pearson <[email protected]>2011-12-16 09:56:23 -0600
commitd979df2f36840b03425e5dc40907f16d10fe4b5c (patch)
treefcf35fe4a4c90a220e799b51299b00f5cc1bb58b /src/knemod/knemodaemon.cpp
parent238d438877620ed73915f2360d820cfc0c9131cc (diff)
downloadknemo-d979df2f36840b03425e5dc40907f16d10fe4b5c.tar.gz
knemo-d979df2f36840b03425e5dc40907f16d10fe4b5c.zip
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 238d438877620ed73915f2360d820cfc0c9131cc.
Diffstat (limited to 'src/knemod/knemodaemon.cpp')
-rw-r--r--src/knemod/knemodaemon.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/knemod/knemodaemon.cpp b/src/knemod/knemodaemon.cpp
index 030494a..313ccb6 100644
--- a/src/knemod/knemodaemon.cpp
+++ b/src/knemod/knemodaemon.cpp
@@ -140,11 +140,11 @@ void KNemoDaemon::readConfig()
{
TQString entry;
InterfaceCommand cmd;
- entry = TQString( "RunAsRoot%1" ).arg( i + 1 );
+ entry = TQString( "RunAsRoot%1" ).tqarg( i + 1 );
cmd.runAsRoot = config->readBoolEntry( entry );
- entry = TQString( "Command%1" ).arg( i + 1 );
+ entry = TQString( "Command%1" ).tqarg( i + 1 );
cmd.command = config->readEntry( entry );
- entry = TQString( "MenuText%1" ).arg( i + 1 );
+ entry = TQString( "MenuText%1" ).tqarg( i + 1 );
cmd.menuText = config->readEntry( entry );
settings.commands.append( cmd );
}
@@ -247,11 +247,11 @@ void KNemoDaemon::reparseConfiguration()
{
TQString entry;
InterfaceCommand cmd;
- entry = TQString( "RunAsRoot%1" ).arg( i + 1 );
+ entry = TQString( "RunAsRoot%1" ).tqarg( i + 1 );
cmd.runAsRoot = config->readBoolEntry( entry );
- entry = TQString( "Command%1" ).arg( i + 1 );
+ entry = TQString( "Command%1" ).tqarg( i + 1 );
cmd.command = config->readEntry( entry );
- entry = TQString( "MenuText%1" ).arg( i + 1 );
+ entry = TQString( "MenuText%1" ).tqarg( i + 1 );
cmd.menuText = config->readEntry( entry );
settings->commands.append( cmd );
}