From 73ee6ef3119df49c1fcc3c3478c9211379172a9a Mon Sep 17 00:00:00 2001 From: Daniel Molkentin Date: Tue, 6 Dec 2011 14:42:51 +0100 Subject: Fix declarative examples and demos issue on Windows On Windows, if the resulting binaries reside in /Delease and /Debug subdirs. Thus we require the same hack as on Meego where the binary alone resides in the /bin subdir. Reviewed-by: Alessandro Portale --- demos/helper/qmlapplicationviewer/qmlapplicationviewer.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'demos') diff --git a/demos/helper/qmlapplicationviewer/qmlapplicationviewer.cpp b/demos/helper/qmlapplicationviewer/qmlapplicationviewer.cpp index 24f06593d4..4ad31c359a 100644 --- a/demos/helper/qmlapplicationviewer/qmlapplicationviewer.cpp +++ b/demos/helper/qmlapplicationviewer/qmlapplicationviewer.cpp @@ -90,7 +90,6 @@ class QmlApplicationViewerPrivate QString QmlApplicationViewerPrivate::adjustPath(const QString &path) { -#ifdef Q_OS_UNIX #ifdef Q_OS_MAC if (!QDir::isAbsolutePath(path)) return QString::fromLatin1("%1/../Resources/%2") @@ -100,7 +99,6 @@ QString QmlApplicationViewerPrivate::adjustPath(const QString &path) QString::fromLatin1("%1/../%2").arg(QCoreApplication::applicationDirPath(), path); if (QFileInfo(pathInInstallDir).exists()) return pathInInstallDir; -#endif #endif return path; } -- cgit v1.2.1