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