diff --git a/examples/colorswitch/colorswitch.pro b/examples/colorswitch/colorswitch.pro index 6497d8ac..e19c3bf9 100644 --- a/examples/colorswitch/colorswitch.pro +++ b/examples/colorswitch/colorswitch.pro @@ -1,9 +1,9 @@ include( $${PWD}/../examples.pri ) -TARGET = gallery +TARGET = colorswitch RESOURCES += \ - gallery.qrc + colorswitch.qrc SOURCES += \ main.cpp diff --git a/examples/colorswitch/colorswitch.qrc b/examples/colorswitch/colorswitch.qrc index a93f8a98..77f236a9 100644 --- a/examples/colorswitch/colorswitch.qrc +++ b/examples/colorswitch/colorswitch.qrc @@ -1,5 +1,5 @@ - gallery.qml + colorswitch.qml diff --git a/examples/colorswitch/main.cpp b/examples/colorswitch/main.cpp index ace17777..fb18a2e8 100644 --- a/examples/colorswitch/main.cpp +++ b/examples/colorswitch/main.cpp @@ -106,7 +106,7 @@ int main( int argc, char* argv[] ) SkinnyShortcut::enable( SkinnyShortcut::Quit | SkinnyShortcut::DebugShortcuts ); - QQmlApplicationEngine engine( QUrl( "qrc:/qml/gallery.qml" ) ); + QQmlApplicationEngine engine( QUrl( "qrc:/qml/colorswitch.qml" ) ); return app.exec(); } diff --git a/examples/examples.pro b/examples/examples.pro index 40851385..8657fd0f 100644 --- a/examples/examples.pro +++ b/examples/examples.pro @@ -17,8 +17,8 @@ SUBDIRS += \ # qml SUBDIRS += \ buttons \ + colorswitch \ frames \ - gallery \ gbenchmark \ glabels \ lineedit \