From ea00fdb36ab727b2f403a9feed5e8d96fb6659fc Mon Sep 17 00:00:00 2001 From: "Lubomir I. Ivanov" Date: Mon, 23 Feb 2015 22:31:25 +0200 Subject: [PATCH] qt-gui.cpp: fix imcomplete type error qt-gui.cpp:44:2: error: incomplete type 'QTextCodec' used in nested name specifier Signed-off-by: Lubomir I. Ivanov Signed-off-by: Dirk Hohndel --- qt-gui.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/qt-gui.cpp b/qt-gui.cpp index aeed39b32..474622e99 100644 --- a/qt-gui.cpp +++ b/qt-gui.cpp @@ -9,6 +9,7 @@ #include #include #include +#include static QApplication *application = NULL; static MainWindow *window = NULL;