projects
/
platform
/
upstream
/
qtdeclarative.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b45528f
)
Fix compiler warning about unused parameter
author
Kai Koehne
<kai.koehne@digia.com>
Mon, 10 Jun 2013 07:48:21 +0000
(09:48 +0200)
committer
The Qt Project
<gerrit-noreply@qt-project.org>
Mon, 10 Jun 2013 10:50:11 +0000
(12:50 +0200)
Fix gcc compiler warning about unused parameter:
qquickwindow.cpp:111:10: warning: unused parameter āeā [-Wunused-parameter]
This got introduced by commit
9d75626b
Change-Id: Ia280fd9fdd584eed81f4d810311c56f5daee3e28
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
src/quick/items/qquickwindow.cpp
patch
|
blob
|
history
diff --git
a/src/quick/items/qquickwindow.cpp
b/src/quick/items/qquickwindow.cpp
index
7b84168
..
619c72a
100644
(file)
--- a/
src/quick/items/qquickwindow.cpp
+++ b/
src/quick/items/qquickwindow.cpp
@@
-108,7
+108,7
@@
public:
}
protected:
- void timerEvent(QTimerEvent *
e
)
+ void timerEvent(QTimerEvent *)
{
killTimer(m_timer);
m_timer = 0;