From: Marcus Eggenberger Date: Mon, 5 May 2008 00:52:11 +0000 (+0000) Subject: making MSVC happy. Who would have thought that QMetaObject is a struct and not a... X-Git-Tag: 0.2.0-beta1~6 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=ce42a143c25a386d386a8725d422cae36da01b3c;hp=29b3fd2d4ee33d8bc72ef28982e5a6e963892991 making MSVC happy. Who would have thought that QMetaObject is a struct and not a class... --- diff --git a/src/common/signalproxy.h b/src/common/signalproxy.h index cca2ccb5..1090547e 100644 --- a/src/common/signalproxy.h +++ b/src/common/signalproxy.h @@ -32,7 +32,7 @@ class SignalRelay; class SyncableObject; -class QMetaObject; +struct QMetaObject; class SignalProxy : public QObject { Q_OBJECT