Make textballon example follow convention
Currently, the qml examples autotest works on a set of conventions defined in its source code to determine which tests to run.
This commit is contained in:
parent
10832f9746
commit
4e7e10c403
|
@ -41,7 +41,7 @@
|
||||||
|
|
||||||
#include <QDeclarativeExtensionPlugin>
|
#include <QDeclarativeExtensionPlugin>
|
||||||
|
|
||||||
#include "textballoon.h"
|
#include "../textballoon.h"
|
||||||
|
|
||||||
class TextBalloonPlugin : public QDeclarativeExtensionPlugin
|
class TextBalloonPlugin : public QDeclarativeExtensionPlugin
|
||||||
{
|
{
|
|
@ -5,9 +5,9 @@ QT += declarative
|
||||||
TARGET = qmltextballoonplugin
|
TARGET = qmltextballoonplugin
|
||||||
|
|
||||||
HEADERS += textballoonplugin/plugin.h \
|
HEADERS += textballoonplugin/plugin.h \
|
||||||
textballoonplugin/textballoon.h
|
textballoon.h
|
||||||
|
|
||||||
SOURCES += textballoonplugin/textballoon.cpp
|
SOURCES += textballoon.cpp
|
||||||
|
|
||||||
DESTDIR = textballoonplugin
|
DESTDIR = textballoonplugin
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue