diff options
author | Jørgen Lind <jorgen.lind@nokia.com> | 2011-05-03 11:00:50 (GMT) |
---|---|---|
committer | Jørgen Lind <jorgen.lind@nokia.com> | 2011-05-03 11:06:12 (GMT) |
commit | 9625c564877414695a9706acf34bc8719018ef06 (patch) | |
tree | add7366ed022401fa87287bb7e729afaa8fea1e8 /src/gui | |
parent | 16c054125949b8f8ceec9626156d8790254a63a2 (diff) | |
download | Qt-9625c564877414695a9706acf34bc8719018ef06.zip Qt-9625c564877414695a9706acf34bc8719018ef06.tar.gz Qt-9625c564877414695a9706acf34bc8719018ef06.tar.bz2 |
Remove warnings
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/kernel/qplatformintegration_qpa.cpp | 1 | ||||
-rw-r--r-- | src/gui/kernel/qplatformwindow_qpa.cpp | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/kernel/qplatformintegration_qpa.cpp b/src/gui/kernel/qplatformintegration_qpa.cpp index d559c53..8ff12eb 100644 --- a/src/gui/kernel/qplatformintegration_qpa.cpp +++ b/src/gui/kernel/qplatformintegration_qpa.cpp @@ -214,6 +214,7 @@ QPlatformNativeInterface * QPlatformIntegration::nativeInterface() const bool QPlatformIntegration::hasCapability(Capability cap) const { + Q_UNUSED(cap); return false; } diff --git a/src/gui/kernel/qplatformwindow_qpa.cpp b/src/gui/kernel/qplatformwindow_qpa.cpp index 19bf7a9..f3654b6 100644 --- a/src/gui/kernel/qplatformwindow_qpa.cpp +++ b/src/gui/kernel/qplatformwindow_qpa.cpp @@ -150,7 +150,7 @@ void QPlatformWindow::setParent(const QPlatformWindow *parent) /*! Reimplement to set the window title to \a title */ -void QPlatformWindow::setWindowTitle(const QString &title) {} +void QPlatformWindow::setWindowTitle(const QString &) {} /*! Reimplement to be able to let Qt rais windows to the top of the desktop |