From 0619d18eaae8143e784a0a89d77feb3f7db61a74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20M=C3=B6ller?= Date: Fri, 27 Jun 2014 12:18:12 +0000 Subject: [PATCH] - add dllexport and fix some linker error for windows - add includes - fix gl function names (from no_ext to arb extension) - rearrange includes, so that glew.h is included before gl.h (through qt5.0) is included - add some missing file properties git-svn-id: http://www.openflipper.org/svnrepo/OpenFlipper/branches/Free@19018 383ad7c9-94d9-4d36-a494-682f7c89f535 --- FileOM.cc | 14 +++++++------- FileOM.hh | 2 ++ 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/FileOM.cc b/FileOM.cc index 7aad4d1..2926878 100644 --- a/FileOM.cc +++ b/FileOM.cc @@ -39,7 +39,14 @@ * $Date$ * * * \*===========================================================================*/ +#include + +#include +#include +#include + +#include #if QT_VERSION >= 0x050000 #include @@ -54,14 +61,7 @@ #include "FileOM.hh" #include -#include - -#include "OpenFlipper/BasePlugin/PluginFunctions.hh" -#include "OpenFlipper/common/GlobalOptions.hh" -#include - -#include // Defines for the type handling drop down box #define TYPEAUTODETECT 0 diff --git a/FileOM.hh b/FileOM.hh index bd1f715..2c24225 100644 --- a/FileOM.hh +++ b/FileOM.hh @@ -44,6 +44,8 @@ #define FILEOMPLUGIN_HH #include +class QCheckBox; +class QComboBox; #include #include -- GitLab