QWindowsMimeConverter: Fix forward-declaration of foreign structs
It was inside the Qt namespace so it would try to use it as such. Change-Id: I8c8960e5f4758e945bef95b52247211e8f86efad Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>bb10
parent
6a027a8677
commit
01dfa222fd
|
|
@ -6,17 +6,18 @@
|
|||
|
||||
#include <QtGui/qtguiglobal.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
class QMetaType;
|
||||
class QMimeData;
|
||||
class QVariant;
|
||||
struct tagFORMATETC;
|
||||
using FORMATETC = tagFORMATETC;
|
||||
struct tagSTGMEDIUM;
|
||||
using STGMEDIUM = tagSTGMEDIUM;
|
||||
struct IDataObject;
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
class QMetaType;
|
||||
class QMimeData;
|
||||
class QVariant;
|
||||
|
||||
class Q_GUI_EXPORT QWindowsMimeConverter
|
||||
{
|
||||
public:
|
||||
|
|
|
|||
Loading…
Reference in New Issue