From 4f99f868f09bbffa2e15733b8b7c78eba07a199e Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 6 Dec 2020 21:23:48 +0900 Subject: Renaming of files in preparation for code style tools. Signed-off-by: Michele Calgaro --- arts/kde/kiotest.cc | 54 ----------------------------------------------------- 1 file changed, 54 deletions(-) delete mode 100644 arts/kde/kiotest.cc (limited to 'arts/kde/kiotest.cc') diff --git a/arts/kde/kiotest.cc b/arts/kde/kiotest.cc deleted file mode 100644 index ed9a3fadf..000000000 --- a/arts/kde/kiotest.cc +++ /dev/null @@ -1,54 +0,0 @@ -#include -#include -#include -#include -#include -#include -#include -#include "qiomanager.h" -#include "artskde.h" - -using namespace std; -using namespace Arts; - - -static TDECmdLineOptions options[] = -{ - { "+[URL]", I18N_NOOP("URL to open"), 0 }, - TDECmdLineLastOption -}; - -int main(int argc, char **argv) -{ - TDEAboutData aboutData( "kiotest", I18N_NOOP("KIOTest"), I18N_NOOP("0.1"), "", TDEAboutData::License_GPL, ""); - - TDECmdLineArgs::init(argc,argv,&aboutData); - TDECmdLineArgs::addCmdLineOptions(options); - TDEApplication app; - QIOManager qiomanager; - Dispatcher dispatcher(&qiomanager); - TDEIOInputStream stream; - StdoutWriter writer; - - TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); - - if(args->count()) - { - if(!stream.openURL(args->arg(0))) - { - printf("can't open url"); - exit(1); - } - } - else - exit(1); - - args->clear(); - - connect(stream, writer); - - writer.start(); - stream.start(); - - app.exec(); -} -- cgit v1.2.3