diff options
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main.cpp b/src/main.cpp index c35ebda..2127de9 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -19,7 +19,7 @@ ***************************************************************************/ -#include "kio_umountwrapper.h" +#include "tdeio_umountwrapper.h" #include <kaboutdata.h> #include <kcmdlineargs.h> #include <klocale.h> @@ -39,20 +39,20 @@ static KCmdLineOptions options[] = int main(int argc, char **argv) { - TDEAboutData about("kio_umountwrapper", I18N_NOOP("kio_umountwrapper"), version, description, + TDEAboutData about("tdeio_umountwrapper", I18N_NOOP("tdeio_umountwrapper"), version, description, TDEAboutData::License_GPL, "(C) 2007 Frode M. Døving", 0, 0, "[email protected]"); about.addAuthor( "Frode M. Døving", 0, "[email protected]" ); TDECmdLineArgs::init(argc, argv, &about); TDECmdLineArgs::addCmdLineOptions( options ); - kio_umountwrapper *app; + tdeio_umountwrapper *app; TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); kdDebug() << "arg0: " << args->arg(0) << endl; if (args->count() == 0) TDECmdLineArgs::usage(i18n("No URL specified!")); - else app = new kio_umountwrapper(TQString(args->arg(0))); + else app = new tdeio_umountwrapper(TQString(args->arg(0))); args->clear(); |