diff --git a/src/datatypes/datatypes.cpp b/src/datatypes/datatypes.cpp index 7e5c917..1678592 100644 --- a/src/datatypes/datatypes.cpp +++ b/src/datatypes/datatypes.cpp @@ -1,38 +1,40 @@ /* Copyright (C) 2018 Volker Krause This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ #include "organization.h" #include "person.h" #include "place.h" #include #include using namespace KItinerary; struct StartupFunction { StartupFunction() { // add types here that are not covered by moc's auto-registration qRegisterMetaType(); qRegisterMetaType(); qRegisterMetaType(); qRegisterMetaType(); + qRegisterMetaType(); + qRegisterMetaType(); } }; StartupFunction runOnce;