rename project QZXingTests to the valid name QZXingDragNDropTest

This commit is contained in:
favoritas37 2016-02-28 15:40:05 +02:00
parent dfde91a225
commit 3798e89fb6
5 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
# Add more folders to ship with the application, here
folder_01.source = qml/QZXingTestApp
folder_01.source = qml/QZXingDragNDropTest
folder_01.target = qml
DEPLOYMENTFOLDERS = folder_01

View File

@ -23,7 +23,7 @@ Q_DECL_EXPORT int main(int argc, char *argv[])
QmlApplicationViewer viewer;
viewer.setOrientation(QmlApplicationViewer::ScreenOrientationAuto);
qmlRegisterType<DropArea>("DropArea", 1, 0, "DropArea");
viewer.setMainQmlFile(QLatin1String("qml/QZXingTestApp/main_QtQuick1.qml"));
viewer.setMainQmlFile(QLatin1String("qml/QZXingDragNDropTest/main_QtQuick1.qml"));
#else
QGuiApplication* app = new QGuiApplication(argc, argv);
@ -31,7 +31,7 @@ Q_DECL_EXPORT int main(int argc, char *argv[])
QtQuick2ApplicationViewer viewer;
qmlRegisterType<DropArea>("DropArea", 1, 0, "DropArea");
viewer.setMainQmlFile(QStringLiteral("qml/QZXingTestApp/main_QtQuick2.qml"));
viewer.setMainQmlFile(QStringLiteral("qml/QZXingDragNDropTest/main_QtQuick2.qml"));
#endif
viewer.showExpanded();