summaryrefslogtreecommitdiffstats
path: root/src/plugins/graphicssystems
diff options
context:
space:
mode:
authorJeremy Katz <jeremy.katz@nokia.com>2009-11-19 17:00:25 (GMT)
committerJeremy Katz <jeremy.katz@nokia.com>2009-11-19 17:00:25 (GMT)
commit4485749550e99b71ba14a2baaef492f1da3c0478 (patch)
tree48e422ca1de72ae79010506cc7742c6b9d72b652 /src/plugins/graphicssystems
parente105e78d81b3696044af693ed65f88034c3e92da (diff)
downloadQt-4485749550e99b71ba14a2baaef492f1da3c0478.zip
Qt-4485749550e99b71ba14a2baaef492f1da3c0478.tar.gz
Qt-4485749550e99b71ba14a2baaef492f1da3c0478.tar.bz2
missing ) in QVNCCursor::setCursor
Diffstat (limited to 'src/plugins/graphicssystems')
-rw-r--r--src/plugins/graphicssystems/vnc/qvnccursor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/graphicssystems/vnc/qvnccursor.cpp b/src/plugins/graphicssystems/vnc/qvnccursor.cpp
index a0107b5..aa0f109 100644
--- a/src/plugins/graphicssystems/vnc/qvnccursor.cpp
+++ b/src/plugins/graphicssystems/vnc/qvnccursor.cpp
@@ -76,7 +76,7 @@ void QVNCCursor::setCursor(Qt::CursorShape shape)
if (useVncCursor) {
server->setDirtyCursor();
} else {
- screen->setDirty(QRect(QRect(0,0,1,1));
+ screen->setDirty(QRect(QRect(0,0,1,1)));
}
}