diff options
Diffstat (limited to 'kopete')
-rw-r--r-- | kopete/kopete/main.cpp | 4 | ||||
-rw-r--r-- | kopete/libkopete/tests/kopetepasswordtest_program.cpp | 4 | ||||
-rw-r--r-- | kopete/libkopete/tests/kopetewallettest_program.cpp | 2 | ||||
-rw-r--r-- | kopete/plugins/smpppdcs/unittest/main.cpp | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/kopete/kopete/main.cpp b/kopete/kopete/main.cpp index 679277ad..27870226 100644 --- a/kopete/kopete/main.cpp +++ b/kopete/kopete/main.cpp @@ -29,7 +29,7 @@ static const char description[] = I18N_NOOP( "Kopete, the TDE Instant Messenger" ); -static KCmdLineOptions options[] = +static TDECmdLineOptions options[] = { { "noplugins", I18N_NOOP( "Do not load plugins. This option overrides all other options." ), 0 }, { "noconnect", I18N_NOOP( "Disable auto-connection" ), 0 }, @@ -44,7 +44,7 @@ static KCmdLineOptions options[] = // { "url <url>", I18N_NOOP( "Load the given Kopete URL" ), 0 }, // { "!+[plugin]", I18N_NOOP( "Load specified plugins" ), 0 }, { "!+[URL]", I18N_NOOP("URLs to pass to kopete / emoticon themes to install"), 0}, - KCmdLineLastOption + TDECmdLineLastOption }; int main( int argc, char *argv[] ) diff --git a/kopete/libkopete/tests/kopetepasswordtest_program.cpp b/kopete/libkopete/tests/kopetepasswordtest_program.cpp index 63c9929d..45f0b0f9 100644 --- a/kopete/libkopete/tests/kopetepasswordtest_program.cpp +++ b/kopete/libkopete/tests/kopetepasswordtest_program.cpp @@ -30,14 +30,14 @@ static TQTextStream _out( stdout, IO_WriteOnly ); -static KCmdLineOptions opts[] = +static TDECmdLineOptions opts[] = { { "id <id>", I18N_NOOP("Config group to store password in"), "TestAccount" }, { "set <new>", I18N_NOOP("Set password to new"), 0 }, { "error", I18N_NOOP("Claim password was erroneous"), 0 }, { "prompt <prompt>", I18N_NOOP("Password prompt"), "Enter a password" }, { "image <filename>", I18N_NOOP("Image to display in password dialog"), 0 }, - KCmdLineLastOption + TDECmdLineLastOption }; using namespace Kopete; diff --git a/kopete/libkopete/tests/kopetewallettest_program.cpp b/kopete/libkopete/tests/kopetewallettest_program.cpp index 74380115..953124b0 100644 --- a/kopete/libkopete/tests/kopetewallettest_program.cpp +++ b/kopete/libkopete/tests/kopetewallettest_program.cpp @@ -63,7 +63,7 @@ int main( int argc, char *argv[] ) { TDEAboutData aboutData( "kopetewallettest", "kopetewallettest", "version" ); TDECmdLineArgs::init( argc, argv, &aboutData ); - KCmdLineOptions opts[] = { {"+action",0,0}, KCmdLineLastOption }; + TDECmdLineOptions opts[] = { {"+action",0,0}, TDECmdLineLastOption }; TDECmdLineArgs::addCmdLineOptions( opts ); TDEApplication app( "kopetewallettest" ); diff --git a/kopete/plugins/smpppdcs/unittest/main.cpp b/kopete/plugins/smpppdcs/unittest/main.cpp index 5eda8cb2..eefcd731 100644 --- a/kopete/plugins/smpppdcs/unittest/main.cpp +++ b/kopete/plugins/smpppdcs/unittest/main.cpp @@ -25,7 +25,7 @@ static const char description[] = I18N_NOOP("SMPPPDClientTests"); static const char version[] = "0.1"; -static KCmdLineOptions options[] = { KCmdLineLastOption }; +static TDECmdLineOptions options[] = { TDECmdLineLastOption }; int main( int argc, char** argv ) { TDEAboutData about("SMPPPDClientTests", I18N_NOOP("SMPPPDClientTests"), version, description, |