Fixed compilation issue of config without Qt

This commit is contained in:
xawotihs
2015-09-24 23:47:16 +02:00
parent b8b5362ba5
commit 0f168922d8

View File

@@ -10,7 +10,7 @@
#if !defined(QT_CONFIG)
#include <boost/scoped_ptr.hpp>
typedef ManaCostPtr boost::scoped_ptr<ManaCost>
typedef boost::scoped_ptr<ManaCost> ManaCostPtr;
#else
#include <QScopedPointer>
class ManaCostPtr : public QScopedPointer<ManaCost>