Fixing build errors

This commit is contained in:
Brad Davis 2016-01-27 16:23:20 -08:00
parent 5b817ccc21
commit 06071c6493
3 changed files with 3 additions and 3 deletions

View file

@ -17,7 +17,7 @@
QString const ImageOverlay::TYPE = "image";
QUrl const ImageOverlay::URL = "hifi/overlays/ImageOverlay.qml";
QUrl const ImageOverlay::URL(QString("hifi/overlays/ImageOverlay.qml"));
ImageOverlay::ImageOverlay()
: QmlOverlay(URL) { }

View file

@ -9,7 +9,7 @@
#include "RectangleOverlay.h"
QString const RectangleOverlay::TYPE = "rectangle";
QUrl const RectangleOverlay::URL = "hifi/overlays/RectangleOverlay.qml";
QUrl const RectangleOverlay::URL(QString("hifi/overlays/RectangleOverlay.qml"));
RectangleOverlay::RectangleOverlay() : QmlOverlay(URL) {}

View file

@ -25,7 +25,7 @@
#include "text/FontFamilies.h"
QString const TextOverlay::TYPE = "text";
QUrl const TextOverlay::URL = "hifi/overlays/TextOverlay.qml";
QUrl const TextOverlay::URL(QString("hifi/overlays/TextOverlay.qml"));
TextOverlay::TextOverlay() : QmlOverlay(URL) { }