src/scripttools/debugging/qscriptedit.cpp
changeset 3 41300fa6a67c
parent 0 1918ee327afb
child 4 3b1da2848fc7
equal deleted inserted replaced
2:56cd8111b7f7 3:41300fa6a67c
   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