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/filters | |
parent | 94d34ce494ae248bfcfc3f4dfd194e6df2fb33dc (diff) | |
download | tdeaccessibility-7c140ea1cb70b8a6ecb34454514dcf91d7bcd0c7.tar.gz tdeaccessibility-7c140ea1cb70b8a6ecb34454514dcf91d7bcd0c7.zip |
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'kttsd/filters')
-rw-r--r-- | kttsd/filters/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kttsd/filters/main.cpp b/kttsd/filters/main.cpp index f33d771..35cdb31 100644 --- a/kttsd/filters/main.cpp +++ b/kttsd/filters/main.cpp @@ -65,13 +65,13 @@ int main(int argc, char *argv[]) KAboutData::License_GPL, "(C) 2005, Gary Cramblitt <garycramblitt@comcast.net>"); aboutdata.addAuthor("Gary Cramblitt", I18N_NOOP("Maintainer"),"garycramblitt@comcast.net"); - KCmdLineArgs::init( argc, argv, &aboutdata ); + TDECmdLineArgs::init( argc, argv, &aboutdata ); // Tell which options are supported - KCmdLineArgs::addCmdLineOptions( options ); + TDECmdLineArgs::addCmdLineOptions( options ); KApplication app( false, false ); - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); KTrader::OfferList offers = KTrader::self()->query("KTTSD/FilterPlugin"); |