From: Aurindam Jana Date: Thu, 17 Nov 2011 12:52:02 +0000 (+0100) Subject: InspectorService: fix failing test cases X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=b7319264a16ebafb5e257f721c69995c09df1ac5;p=konrad%2Fqtdeclarative.git InspectorService: fix failing test cases Change-Id: I741cc8cc2d1004c2c94a1985ed9287aecf613675 Reviewed-by: Kai Koehne --- diff --git a/tests/auto/declarative/debugger/qdeclarativeinspector/app/main.cpp b/tests/auto/declarative/debugger/qdeclarativeinspector/app/main.cpp index e6b9fb3..c851222 100644 --- a/tests/auto/declarative/debugger/qdeclarativeinspector/app/main.cpp +++ b/tests/auto/declarative/debugger/qdeclarativeinspector/app/main.cpp @@ -64,10 +64,10 @@ int main(int argc, char *argv[]) if (qtquick2) { QQuickView *view = new QQuickView(); - view->setSource(QUrl::fromLocalFile("qtquick2.qml")); + view->setSource(QUrl::fromLocalFile("app/qtquick2.qml")); } else { QDeclarativeView *view = new QDeclarativeView(); - view->setSource(QUrl::fromLocalFile("qtquick1.qml")); + view->setSource(QUrl::fromLocalFile("app/qtquick1.qml")); } return app.exec(); }