From c663b6440964f6ac48027143ac9e63298991f9d0 Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:33:34 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- ksystraycmd/main.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'ksystraycmd/main.cpp') diff --git a/ksystraycmd/main.cpp b/ksystraycmd/main.cpp index b10728fd9..ac6b94d74 100644 --- a/ksystraycmd/main.cpp +++ b/ksystraycmd/main.cpp @@ -67,7 +67,7 @@ int main( int argc, char *argv[] ) KSysTrayCmd cmd; // Read the window id - QString wid = args->getOption( "wid" ); + TQString wid = args->getOption( "wid" ); if ( !wid.isEmpty() ) { int base = 10; if ( wid.startsWith( "0x" ) ) { @@ -85,7 +85,7 @@ int main( int argc, char *argv[] ) } // Read window title regexp - QString title = args->getOption( "window" ); + TQString title = args->getOption( "window" ); if ( !title.isEmpty() ) cmd.setPattern( title ); @@ -93,14 +93,14 @@ int main( int argc, char *argv[] ) KCmdLineArgs::usage(i18n("No command or window specified")); // Read the command - QString command; + TQString command; for ( int i = 0; i < args->count(); i++ ) - command += KProcess::quote(QString::fromLocal8Bit( args->arg(i) )) + " "; + command += KProcess::quote(TQString::fromLocal8Bit( args->arg(i) )) + " "; if ( !command.isEmpty() ) cmd.setCommand( command ); // Tooltip - QString tip = args->getOption( "tooltip" ); + TQString tip = args->getOption( "tooltip" ); if ( !tip.isEmpty() ) cmd.setDefaultTip( tip ); -- cgit v1.2.3