summaryrefslogtreecommitdiffstats
path: root/examples/widgets/codeeditor/codeeditor.cpp
diff options
context:
space:
mode:
authorFrans Englich <frans.englich@nokia.com>2009-11-20 12:19:09 (GMT)
committerFrans Englich <frans.englich@nokia.com>2009-11-20 12:19:09 (GMT)
commitb5294497836db44261c97cfeab28d0ac4f8402f1 (patch)
treec4331314445b41166ce2cd22a80c9fb9f46b5023 /examples/widgets/codeeditor/codeeditor.cpp
parent2473ab1cf217a989849190cbfa47fe312698adb9 (diff)
parent1b8d5bec5763708c66e7bd586aee3df7f94b5cb5 (diff)
downloadQt-b5294497836db44261c97cfeab28d0ac4f8402f1.zip
Qt-b5294497836db44261c97cfeab28d0ac4f8402f1.tar.gz
Qt-b5294497836db44261c97cfeab28d0ac4f8402f1.tar.bz2
Merge branch '4.6' into mmfphonon
Conflicts: demos/qmediaplayer/mediaplayer.cpp
Diffstat (limited to 'examples/widgets/codeeditor/codeeditor.cpp')
-rw-r--r--examples/widgets/codeeditor/codeeditor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/widgets/codeeditor/codeeditor.cpp b/examples/widgets/codeeditor/codeeditor.cpp
index 4632466..e8eb8cf 100644
--- a/examples/widgets/codeeditor/codeeditor.cpp
+++ b/examples/widgets/codeeditor/codeeditor.cpp
@@ -50,7 +50,7 @@ CodeEditor::CodeEditor(QWidget *parent) : QPlainTextEdit(parent)
lineNumberArea = new LineNumberArea(this);
connect(this, SIGNAL(blockCountChanged(int)), this, SLOT(updateLineNumberAreaWidth(int)));
- connect(this, SIGNAL(updateRequest(const QRect &, int)), this, SLOT(updateLineNumberArea(const QRect &, int)));
+ connect(this, SIGNAL(updateRequest(QRect,int)), this, SLOT(updateLineNumberArea(QRect,int)));
connect(this, SIGNAL(cursorPositionChanged()), this, SLOT(highlightCurrentLine()));
updateLineNumberAreaWidth(0);