equal
deleted
inserted
replaced
108 |
108 |
109 m_extraArea = new QScriptEditExtraArea(this); |
109 m_extraArea = new QScriptEditExtraArea(this); |
110 |
110 |
111 QObject::connect(this, SIGNAL(blockCountChanged(int)), |
111 QObject::connect(this, SIGNAL(blockCountChanged(int)), |
112 this, SLOT(updateExtraAreaWidth())); |
112 this, SLOT(updateExtraAreaWidth())); |
113 QObject::connect(this, SIGNAL(updateRequest(const QRect &, int)), |
113 QObject::connect(this, SIGNAL(updateRequest(QRect,int)), |
114 this, SLOT(updateExtraArea(const QRect &, int))); |
114 this, SLOT(updateExtraArea(QRect,int))); |
115 QObject::connect(this, SIGNAL(cursorPositionChanged()), |
115 QObject::connect(this, SIGNAL(cursorPositionChanged()), |
116 this, SLOT(highlightCurrentLine())); |
116 this, SLOT(highlightCurrentLine())); |
117 |
117 |
118 updateExtraAreaWidth(); |
118 updateExtraAreaWidth(); |
119 |
119 |