Home
last modified time | relevance | path

Searched refs:m_leftDblQuote (Results 1 – 2 of 2) sorted by relevance

/dports/editors/kile/kile-09ee4ef0417165b93da82c1fc057b9e1713a0c05/src/
H A Deditorextension.cpp2690 m_leftDblQuote = m_quoteList[index].first; in initDoubleQuotes()
2692 …KILE_DEBUG_MAIN << "new quotes: " << m_dblQuotes << " left=" << m_leftDblQuote << " right=" << m_r… in initDoubleQuotes()
2735 QString pattern1 = QRegExp::escape(m_leftDblQuote); in insertDoubleQuotes()
2736 if(m_leftDblQuote.at(m_leftDblQuote.length()-1).isLetter()) { in insertDoubleQuotes()
2754 openFound = (doc->line(lineFound).indexOf(m_leftDblQuote, columnFound) == columnFound); in insertDoubleQuotes()
2763 int startcol = col - m_leftDblQuote.length(); in insertDoubleQuotes()
2765 if (startcol>=0 && textline.indexOf(m_leftDblQuote, startcol) == startcol) { in insertDoubleQuotes()
2766 … doc->removeText(KTextEditor::Range(row, startcol, row, startcol + m_leftDblQuote.length())); in insertDoubleQuotes()
2784 doc->insertText(KTextEditor::Cursor(row, col), m_leftDblQuote); in insertDoubleQuotes()
H A Deditorextension.h250 QString m_leftDblQuote, m_rightDblQuote; variable