diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:27 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:27 -0600 |
commit | 1aa871ce49d51ae2bc591506e8c56f31855bd128 (patch) | |
tree | ccfab9b1cef5f811e598dbd1fe6220ea0837d95a | |
parent | d98213f5a9095e5feeff190599f66af643657605 (diff) | |
download | kile-1aa871ce49d51ae2bc591506e8c56f31855bd128.tar.gz kile-1aa871ce49d51ae2bc591506e8c56f31855bd128.zip |
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
-rw-r--r-- | src/kile/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kile/main.cpp b/src/kile/main.cpp index 4806733..e1ef398 100644 --- a/src/kile/main.cpp +++ b/src/kile/main.cpp @@ -91,9 +91,9 @@ int main( int argc, char ** argv ) aboutData.addCredit(I18N_NOOP("Please consult the webpage for up to date translation credits.")); aboutData.addCredit("Jonathan Pechta and Federico Zenith", I18N_NOOP("Documentation")); - KCmdLineArgs::init( argc, argv, &aboutData ); - KCmdLineArgs::addCmdLineOptions( options ); - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs::init( argc, argv, &aboutData ); + TDECmdLineArgs::addCmdLineOptions( options ); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); bool running = false; DCOPClient *client=0L; |