diff options
author | Lubomir I. Ivanov <neolit123@gmail.com> | 2015-02-23 22:31:25 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-02-26 11:30:04 +0100 |
commit | ea00fdb36ab727b2f403a9feed5e8d96fb6659fc (patch) | |
tree | ce3573cd53815dd8278c95cf64495af2257ecce2 /qt-gui.cpp | |
parent | 0ed4356fc28b9cf9474bbbfcdeb9bc49ff83b9ec (diff) | |
download | subsurface-ea00fdb36ab727b2f403a9feed5e8d96fb6659fc.tar.gz |
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 <neolit123@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-gui.cpp')
-rw-r--r-- | qt-gui.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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 <QDesktopWidget> #include <QNetworkProxy> #include <QLibraryInfo> +#include <QTextCodec> static QApplication *application = NULL; static MainWindow *window = NULL; |