summaryrefslogtreecommitdiffstats
path: root/src/main.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2013-01-30 13:41:03 -0600
committerTimothy Pearson <[email protected]>2013-01-30 13:41:03 -0600
commitad976f3329af690e4f1a4299a12444dc869f7d25 (patch)
tree0bc7569f323c823782889cd18f532f0522f04248 /src/main.cpp
parent5ca1541a32bf9364fba37abc4cd70eb4368ca96d (diff)
downloadtdeio-umountwrapper-ad976f3329af690e4f1a4299a12444dc869f7d25.tar.gz
tdeio-umountwrapper-ad976f3329af690e4f1a4299a12444dc869f7d25.zip
Fix a few remaining references to kio_
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp8
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();