diff options
Diffstat (limited to 'kmplot')
-rw-r--r-- | kmplot/kmplot/kmplot.cpp | 2 | ||||
-rw-r--r-- | kmplot/kmplot/kmplot.h | 2 | ||||
-rw-r--r-- | kmplot/kmplot/main.cpp | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/kmplot/kmplot/kmplot.cpp b/kmplot/kmplot/kmplot.cpp index 5eb17971..1f33bb66 100644 --- a/kmplot/kmplot/kmplot.cpp +++ b/kmplot/kmplot/kmplot.cpp @@ -40,7 +40,7 @@ #include "MainDlg.h" #include "kmplotprogress.h" -KmPlot::KmPlot( KCmdLineArgs* args) +KmPlot::KmPlot( TDECmdLineArgs* args) : DCOPObject( "KmPlotShell" ), KParts::MainWindow( 0L, "KmPlot" ) { // set the shell's ui resource file diff --git a/kmplot/kmplot/kmplot.h b/kmplot/kmplot/kmplot.h index 2e01f142..c8ebad71 100644 --- a/kmplot/kmplot/kmplot.h +++ b/kmplot/kmplot/kmplot.h @@ -54,7 +54,7 @@ public: /** * Default Constructor */ - KmPlot( KCmdLineArgs* args); + KmPlot( TDECmdLineArgs* args); /** * Default Destructor diff --git a/kmplot/kmplot/main.cpp b/kmplot/kmplot/main.cpp index b9d40a5a..60d8c239 100644 --- a/kmplot/kmplot/main.cpp +++ b/kmplot/kmplot/main.cpp @@ -69,11 +69,11 @@ int main( int argc, char **argv ) aboutData.addCredit( "David Vignoni", I18N_NOOP( "svg icon" ), "david80v@tin.it" ); aboutData.addCredit( "Albert Astals Cid", I18N_NOOP( "command line options, MIME type" ), "tsdgeos@terra.es" ); - KCmdLineArgs::init( argc, argv, &aboutData ); - KCmdLineArgs::addCmdLineOptions( options ); // Add our own options. + TDECmdLineArgs::init( argc, argv, &aboutData ); + TDECmdLineArgs::addCmdLineOptions( options ); // Add our own options. KApplication ka; - KCmdLineArgs* args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs* args = TDECmdLineArgs::parsedArgs(); KmPlot *w = new KmPlot( args ); w->show(); ka.setMainWidget( w ); |