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 /khangman | |
parent | 2362ae77640ba97b6ff6beba1636d0fb4da4b34a (diff) | |
download | tdeedu-634845c7a257ece46caaf3d46d8e28c8c091cbf4.tar.gz tdeedu-634845c7a257ece46caaf3d46d8e28c8c091cbf4.zip |
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'khangman')
-rw-r--r-- | khangman/khangman/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/khangman/khangman/main.cpp b/khangman/khangman/main.cpp index 87f220aa..18dcd2ed 100644 --- a/khangman/khangman/main.cpp +++ b/khangman/khangman/main.cpp @@ -110,8 +110,8 @@ int main(int argc, char **argv) I18N_NOOP("Code for generating icons for the characters toolbar"), "peter.hedlund@kdemail.net"); aboutData.addCredit("Inge Wallin", I18N_NOOP("Code cleaning"), "inge@lysator.liu.se"); - KCmdLineArgs::init( argc, argv, &aboutData ); - KCmdLineArgs::addCmdLineOptions( options ); + TDECmdLineArgs::init( argc, argv, &aboutData ); + TDECmdLineArgs::addCmdLineOptions( options ); KApplication app; KHangMan *mainWin = 0; @@ -138,7 +138,7 @@ int main(int argc, char **argv) else { // no session.. just start up normally - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); /// @todo do something with the command line args here |