diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:31 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:31 -0600 |
commit | c5528d18d7870d01c4d8f1b8398db31f68bd7b41 (patch) | |
tree | 2355f0cceb7570f22465bd51b74b8e99f43d27ae /plugins | |
parent | 1bbdd977a4b138178fefe6268817db91715481f9 (diff) | |
download | ktorrent-c5528d18d7870d01c4d8f1b8398db31f68bd7b41.tar.gz ktorrent-c5528d18d7870d01c4d8f1b8398db31f68bd7b41.zip |
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/rssfeed/rss/testlibrss.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/rssfeed/rss/testlibrss.cpp b/plugins/rssfeed/rss/testlibrss.cpp index 7d88c3d..f66a53d 100644 --- a/plugins/rssfeed/rss/testlibrss.cpp +++ b/plugins/rssfeed/rss/testlibrss.cpp @@ -59,11 +59,11 @@ void Tester::slotLoadingComplete( Loader *loader, Document doc, Status status ) int main( int argc, char **argv ) { KAboutData aboutData( "testlibrss", "testlibrss", "0.1" ); - KCmdLineArgs::init( argc, argv, &aboutData ); - KCmdLineArgs::addCmdLineOptions( options ); + TDECmdLineArgs::init( argc, argv, &aboutData ); + TDECmdLineArgs::addCmdLineOptions( options ); KApplication app; - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); if ( args->count() != 1 ) args->usage(); Tester tester; |