summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-19 18:46:25 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-19 18:46:25 -0600
commitd088a3cec7282afe34b731d1abf44fada42d9cad (patch)
treedc378f823e2111f70a534f3e1f98a34d21d51524 /src
parent7677fad8a793b770829bcb381a07205502f33a47 (diff)
downloadfilelight-d088a3cec7282afe34b731d1abf44fada42d9cad.tar.gz
filelight-d088a3cec7282afe34b731d1abf44fada42d9cad.zip
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'src')
-rw-r--r--src/app/main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/app/main.cpp b/src/app/main.cpp
index 17e6989..11107cd 100644
--- a/src/app/main.cpp
+++ b/src/app/main.cpp
@@ -34,8 +34,8 @@ int main( int argc, char *argv[] )
about.addCredit( "Stephanie James", I18N_NOOP("Testing") );
about.addCredit( "Marcus Camen", I18N_NOOP("Bravery in the face of unreadable code") );
- KCmdLineArgs::init( argc, argv, &about );
- KCmdLineArgs::addCmdLineOptions( options );
+ TDECmdLineArgs::init( argc, argv, &about );
+ TDECmdLineArgs::addCmdLineOptions( options );
KApplication app;
@@ -43,7 +43,7 @@ int main( int argc, char *argv[] )
MainWindow *mw = new MainWindow();
app.setMainWidget( mw );
- KCmdLineArgs* const args = KCmdLineArgs::parsedArgs();
+ TDECmdLineArgs* const args = TDECmdLineArgs::parsedArgs();
if (args->count() > 0 ) mw->scan( args->url( 0 ));
args->clear();