diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:43 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:43 -0600 |
commit | 8a69eba2f0eddce05cf86e0df8aec6e9f473d485 (patch) | |
tree | a889ac177bfba440878975db41e0a240daee8075 /korundum | |
parent | 1dbcf2f985c1f3d9319f4c46a0da9951551f82c9 (diff) | |
download | tdebindings-8a69eba2f0eddce05cf86e0df8aec6e9f473d485.tar.gz tdebindings-8a69eba2f0eddce05cf86e0df8aec6e9f473d485.zip |
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'korundum')
-rw-r--r-- | korundum/rubylib/rbkconfig_compiler/rbkconfig_compiler.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/korundum/rubylib/rbkconfig_compiler/rbkconfig_compiler.cpp b/korundum/rubylib/rbkconfig_compiler/rbkconfig_compiler.cpp index a2f503ae..4512eeaf 100644 --- a/korundum/rubylib/rbkconfig_compiler/rbkconfig_compiler.cpp +++ b/korundum/rubylib/rbkconfig_compiler/rbkconfig_compiler.cpp @@ -811,12 +811,12 @@ int main( int argc, char **argv ) aboutData.addCredit( "Richard Dale", "Ruby port", "Richard_Dale@tipitina.demon.co.uk", "" ); - KCmdLineArgs::init( argc, argv, &aboutData ); - KCmdLineArgs::addCmdLineOptions( options ); + TDECmdLineArgs::init( argc, argv, &aboutData ); + TDECmdLineArgs::addCmdLineOptions( options ); KInstance app( &aboutData ); - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); if ( args->count() < 2 ) { kdError() << "Too few arguments." << endl; |