diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:41 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:41 -0600 |
commit | 7c140ea1cb70b8a6ecb34454514dcf91d7bcd0c7 (patch) | |
tree | 89a8149f783b247fc1f2b1508b5a3840f913ecde /kttsd/kttsmgr/kttsmgr.cpp | |
parent | 94d34ce494ae248bfcfc3f4dfd194e6df2fb33dc (diff) | |
download | tdeaccessibility-7c140ea1cb70b8a6ecb34454514dcf91d7bcd0c7.tar.gz tdeaccessibility-7c140ea1cb70b8a6ecb34454514dcf91d7bcd0c7.zip |
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'kttsd/kttsmgr/kttsmgr.cpp')
-rw-r--r-- | kttsd/kttsmgr/kttsmgr.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kttsd/kttsmgr/kttsmgr.cpp b/kttsd/kttsmgr/kttsmgr.cpp index 862a3db..e4ceb7c 100644 --- a/kttsd/kttsmgr/kttsmgr.cpp +++ b/kttsd/kttsmgr/kttsmgr.cpp @@ -66,9 +66,9 @@ int main (int argc, char *argv[]) aboutdata.addAuthor("Paul Giannaros", I18N_NOOP("Contributor"), "ceruleanblaze@gmail.com"); aboutdata.addCredit("Jorge Luis Arzola", I18N_NOOP("Testing"), "arzolacub@hotmail.com"); aboutdata.addCredit("David Powell", I18N_NOOP("Testing"), "achiestdragon@gmail.com"); - KCmdLineArgs::init( argc, argv, &aboutdata ); + TDECmdLineArgs::init( argc, argv, &aboutdata ); - KCmdLineArgs::addCmdLineOptions( options ); + TDECmdLineArgs::addCmdLineOptions( options ); KUniqueApplication::addCmdLineOptions(); @@ -102,7 +102,7 @@ int main (int argc, char *argv[]) showMainWindowOnStartup = config->readBoolEntry("ShowMainWindowOnStartup", true); // If --systray option specified, start minimized in system tray. - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); if (args->isSet("systray")) { embedInSysTray = true; @@ -192,7 +192,7 @@ KttsMgrTray::KttsMgrTray(TQWidget *parent): connect(this, TQT_SIGNAL(quitSelected()), this, TQT_SLOT(quitSelected())); // If --autoexit option given, exit when speaking stops. - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); if (args->isSet("autoexit")) { connectDCOPSignal("kttsd", "KSpeech", |