summaryrefslogtreecommitdiffstats
path: root/tools/designer/src
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2010-04-19 08:01:50 (GMT)
committerFriedemann Kleint <Friedemann.Kleint@nokia.com>2010-04-19 08:01:50 (GMT)
commit0a509ce8633c49e19f52c08b74c9b54d0227f033 (patch)
tree4c96c0f585f1bdbd89c8d76b86eac1b0d7a77dd8 /tools/designer/src
parent73a1291a3f097787f00d79d0d27bd75219bf8e3d (diff)
downloadQt-0a509ce8633c49e19f52c08b74c9b54d0227f033.zip
Qt-0a509ce8633c49e19f52c08b74c9b54d0227f033.tar.gz
Qt-0a509ce8633c49e19f52c08b74c9b54d0227f033.tar.bz2
Fix compile warning.
Diffstat (limited to 'tools/designer/src')
-rw-r--r--tools/designer/src/components/propertyeditor/propertyeditor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/designer/src/components/propertyeditor/propertyeditor.cpp b/tools/designer/src/components/propertyeditor/propertyeditor.cpp
index 86d7bdf..a8ca8ad 100644
--- a/tools/designer/src/components/propertyeditor/propertyeditor.cpp
+++ b/tools/designer/src/components/propertyeditor/propertyeditor.cpp
@@ -135,7 +135,7 @@ QSize ElidingLabel::sizeHint() const
return size;
}
-void ElidingLabel::paintEvent(QPaintEvent *e) {
+void ElidingLabel::paintEvent(QPaintEvent *) {
QPainter painter(this);
painter.setPen(QColor(0, 0, 0, 60));
painter.setBrush(QColor(255, 255, 255, 40));