mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 14:13:47 +02:00
Fixing build errors
This commit is contained in:
parent
5b817ccc21
commit
06071c6493
3 changed files with 3 additions and 3 deletions
|
@ -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) { }
|
||||
|
|
|
@ -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) {}
|
||||
|
||||
|
|
|
@ -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) { }
|
||||
|
||||
|
|
Loading…
Reference in a new issue