diff options
Diffstat (limited to 'kompare/main.cpp')
-rw-r--r-- | kompare/main.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kompare/main.cpp b/kompare/main.cpp index 86e1c5ef..1da6d6ba 100644 --- a/kompare/main.cpp +++ b/kompare/main.cpp @@ -58,8 +58,8 @@ int main(int argc, char *argv[]) aboutData.addCredit( "Malte Starostik", I18N_NOOP("A lot of good advice"), "malte@kde.org" ); aboutData.addCredit( "Bernd Gehrmann", I18N_NOOP("Cervisia diff viewer"), "bernd@physik.hu-berlin.de" ); - KCmdLineArgs::init(argc, argv, &aboutData); - KCmdLineArgs::addCmdLineOptions( options ); + TDECmdLineArgs::init(argc, argv, &aboutData); + TDECmdLineArgs::addCmdLineOptions( options ); KApplication app; bool difault = false; @@ -70,7 +70,7 @@ int main(int argc, char *argv[]) } else { - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); KompareShell* ks; @@ -110,7 +110,7 @@ int main(int argc, char *argv[]) kdDebug( 8100 ) << "Option -c is set" << endl; if ( args->count() != 2 ) { - KCmdLineArgs::usage( "kompare" ); + TDECmdLineArgs::usage( "kompare" ); difault = true; } else @@ -130,7 +130,7 @@ int main(int argc, char *argv[]) kdDebug( 8100 ) << "Option -b is set" << endl; if ( args->count() != 2 ) { - KCmdLineArgs::usage( "kompare" ); + TDECmdLineArgs::usage( "kompare" ); difault = true; } else |