diff options
Diffstat (limited to 'src/tests/kretest.cpp')
| -rw-r--r-- | src/tests/kretest.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/tests/kretest.cpp b/src/tests/kretest.cpp index 10c88c2..941e30d 100644 --- a/src/tests/kretest.cpp +++ b/src/tests/kretest.cpp @@ -8,7 +8,9 @@ * (at your option) any later version. * ***************************************************************************/ +#include <tdeaboutdata.h> #include <tdeapplication.h> +#include <tdecmdlineargs.h> #include <tqstring.h> #include <tqfile.h> @@ -23,7 +25,10 @@ int main(int argc, char *argv[]) { - TDEApplication a(argc, argv, "kretest"); + TDEAboutData *about = new TDEAboutData("kretest", I18N_NOOP("kretest"), "1.0", + nullptr, TDEAboutData::License_GPL, nullptr, nullptr, nullptr, nullptr); + TDECmdLineArgs::init(argc, argv, about); + TDEApplication a; printf("Creating KreImporter.\n"); KreImporter importer; |
