summaryrefslogtreecommitdiffstats
path: root/arts/kde/kiotestslow.cc
diff options
context:
space:
mode:
Diffstat (limited to 'arts/kde/kiotestslow.cc')
-rw-r--r--arts/kde/kiotestslow.cc24
1 files changed, 12 insertions, 12 deletions
diff --git a/arts/kde/kiotestslow.cc b/arts/kde/kiotestslow.cc
index fd5f1e129..93bfac388 100644
--- a/arts/kde/kiotestslow.cc
+++ b/arts/kde/kiotestslow.cc
@@ -1,10 +1,10 @@
#include <stdio.h>
#include <kmedia2.h>
-#include <kcmdlineargs.h>
+#include <tdecmdlineargs.h>
#include <connect.h>
-#include <klocale.h>
-#include <kapplication.h>
-#include <kaboutdata.h>
+#include <tdelocale.h>
+#include <tdeapplication.h>
+#include <tdeaboutdata.h>
#include <stdsynthmodule.h>
#include "qiomanager.h"
#include "artskde.h"
@@ -78,31 +78,31 @@ public:
REGISTER_IMPLEMENTATION(KIOTestSlow_impl);
};
-static KCmdLineOptions options[] =
+static TDECmdLineOptions options[] =
{
{ "+[URL]", I18N_NOOP("URL to open"), 0 },
- KCmdLineLastOption
+ TDECmdLineLastOption
};
#undef USE_FILEINPUTSTREAM
int main(int argc, char **argv)
{
- KAboutData aboutData( "kiotestslow", I18N_NOOP("KIOTest"), I18N_NOOP("0.1"), "", KAboutData::License_GPL, "");
+ TDEAboutData aboutData( "kiotestslow", I18N_NOOP("KIOTest"), I18N_NOOP("0.1"), "", TDEAboutData::License_GPL, "");
- KCmdLineArgs::init(argc,argv,&aboutData);
- KCmdLineArgs::addCmdLineOptions(options);
- KApplication app;
+ TDECmdLineArgs::init(argc,argv,&aboutData);
+ TDECmdLineArgs::addCmdLineOptions(options);
+ TDEApplication app;
QIOManager qiomanager;
Dispatcher dispatcher(&qiomanager);
#ifndef USE_FILEINPUTSTREAM
- KIOInputStream stream;
+ TDEIOInputStream stream;
#else
FileInputStream stream;
#endif
KIOTestSlow writer;
- KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
+ TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
if(args->count())
{