diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:44 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:44 -0600 |
commit | 634845c7a257ece46caaf3d46d8e28c8c091cbf4 (patch) | |
tree | 47eed4bfeb29f9b24fbcdbc961d0804dbe0d3355 /ktouch/src/main.cpp | |
parent | 2362ae77640ba97b6ff6beba1636d0fb4da4b34a (diff) | |
download | tdeedu-634845c7a257ece46caaf3d46d8e28c8c091cbf4.tar.gz tdeedu-634845c7a257ece46caaf3d46d8e28c8c091cbf4.zip |
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'ktouch/src/main.cpp')
-rw-r--r-- | ktouch/src/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ktouch/src/main.cpp b/ktouch/src/main.cpp index 6fc244ba..53d0f41a 100644 --- a/ktouch/src/main.cpp +++ b/ktouch/src/main.cpp @@ -42,8 +42,8 @@ int main(int argc, char **argv) about.addCredit( "David Vignoni", I18N_NOOP("Creator of the SVG icon"), "david80v@tin.it"); about.addCredit( "Anne-Marie Mahfouf", I18N_NOOP("Lots of patches, fixes, updates"), "annma@kde.org"); about.addCredit( "All the creators of training and keyboard files", 0, 0); - KCmdLineArgs::init(argc, argv, &about); - KCmdLineArgs::addCmdLineOptions( options ); + TDECmdLineArgs::init(argc, argv, &about); + TDECmdLineArgs::addCmdLineOptions( options ); KApplication app; KTouch *mainWin = 0; @@ -53,7 +53,7 @@ int main(int argc, char **argv) else { // no session.. just start up normally - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); // TODO: check the command line for a training file and set this as the new to open training file /* TODO: turn splash screen on in release |