diff --git a/src/tabletfinder/main.cpp b/src/tabletfinder/main.cpp index 1c4fa46..84c4e1a 100644 --- a/src/tabletfinder/main.cpp +++ b/src/tabletfinder/main.cpp @@ -1,30 +1,34 @@ /* * This file is part of the KDE wacomtablet project. For copyright * information and license terms see the AUTHORS and COPYING files * in the top-level directory of this distribution. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU 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 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 "dialog.h" + +#include + #include int main(int argc, char *argv[]) { + KLocalizedString::setApplicationDomain("wacomtablet"); QApplication a(argc, argv); Wacom::Dialog w; w.show(); return a.exec(); }