diff options
author | Jeremy Katz <jeremy.katz@nokia.com> | 2009-11-19 17:00:25 (GMT) |
---|---|---|
committer | Jeremy Katz <jeremy.katz@nokia.com> | 2009-11-19 17:00:25 (GMT) |
commit | 4485749550e99b71ba14a2baaef492f1da3c0478 (patch) | |
tree | 48e422ca1de72ae79010506cc7742c6b9d72b652 /src/plugins/graphicssystems | |
parent | e105e78d81b3696044af693ed65f88034c3e92da (diff) | |
download | Qt-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.cpp | 2 |
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))); } } |