delay a few things on startup, such as setting the visibility mode, which ensures...
[personal-kdebase.git] / runtime / kioslave / fish / tests / main.cpp
blob449c97e7db6800ebcd17d041a9bdba7e608ecb27
1 /* Copytester is a test case for the fish kioslave. It copies 100 files from /tmp to /tmp/test using fish's functions.
2 It was written to verify KDE bug 147948: https://bugs.kde.org/show_bug.cgi?id=147948 */
4 #include <kapplication.h>
5 #include <kaboutdata.h>
6 #include <klocalizedstring.h>
7 #include <kmessagebox.h>
8 #include <kcmdlineargs.h>
9 #include <KMainWindow>
10 #include <copytester.h>
12 int main (int argc, char *argv[])
14 const QByteArray& ba=QByteArray("test");
15 const KLocalizedString name=ki18n("copytester");
16 KAboutData aboutData( ba, ba, name, ba, name);
17 KCmdLineArgs::init( argc, argv, &aboutData );
18 KApplication copytester;
20 Browser *mw = new Browser();
21 mw->show();
22 copytester.exec();