Fix warning for -no-feature-multiprocess

Change-Id: Ifa3382098c8f7c2cb1750b7ac5e583ddd71895e2
Reviewed-by: Stephan Binner <stephan.binner@basyskom.com>
Reviewed-by: Paul Olav Tvete <paul.tvete@qt.io>
bb10
Tasuku Suzuki 2017-04-25 17:54:35 +09:00 committed by Stephan Binner
parent 3828022508
commit b6ae2695af
1 changed files with 2 additions and 0 deletions

View File

@ -168,12 +168,14 @@ QByteArray QGenericUnixServices::desktopEnvironment() const
bool QGenericUnixServices::openUrl(const QUrl &url)
{
Q_UNUSED(url)
qWarning("openUrl() not supported on this platform");
return false;
}
bool QGenericUnixServices::openDocument(const QUrl &url)
{
Q_UNUSED(url)
qWarning("openDocument() not supported on this platform");
return false;
}