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