diff options
Diffstat (limited to 'kalzium/src')
-rw-r--r-- | kalzium/src/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kalzium/src/main.cpp b/kalzium/src/main.cpp index 3ea452df..6a8f0920 100644 --- a/kalzium/src/main.cpp +++ b/kalzium/src/main.cpp @@ -65,8 +65,8 @@ int main(int argc, char **argv) about.addCredit( "Brian Beck", I18N_NOOP( "The orbits-icon" )); about.addCredit( "Lee Olson", I18N_NOOP( "Several icons in the information dialog" )); about.addCredit( "Inge Wallin", I18N_NOOP( "Code cleaning, the molecule parser and a lot of smaller improvements" )); - KCmdLineArgs::init(argc, argv, &about); - KCmdLineArgs::addCmdLineOptions( options ); + TDECmdLineArgs::init(argc, argv, &about); + TDECmdLineArgs::addCmdLineOptions( options ); KApplication app; Kalzium *mainWin = 0; @@ -77,7 +77,7 @@ int main(int argc, char **argv) else { // no session.. just start up normally - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); /// @todo do something with the command line args here |