diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-24 10:56:55 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-25 15:12:32 +0900 |
| commit | 9e8724c91829282bd7e909c73a927ccd1501b86e (patch) | |
| tree | c7013007e074263a449377528e77cc70e9a2d5ec /quanta/src/document.cpp | |
| parent | 1c4238cebde2083adb626555f8c4391dea4dc5ed (diff) | |
| download | tdewebdev-9e8724c91829282bd7e909c73a927ccd1501b86e.tar.gz tdewebdev-9e8724c91829282bd7e909c73a927ccd1501b86e.zip | |
Replaced various '#define' with actual strings - part 3
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 321ebe827573752d348520ade483c684febde021)
Diffstat (limited to 'quanta/src/document.cpp')
| -rw-r--r-- | quanta/src/document.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/quanta/src/document.cpp b/quanta/src/document.cpp index c5530dae..a659d9cf 100644 --- a/quanta/src/document.cpp +++ b/quanta/src/document.cpp @@ -3115,7 +3115,7 @@ void Document::setAnnotationText(uint line, const TQString& text) markIf->removeMark(line, KTextEditor::MarkInterface::markType08); } else { - m_annotations.insert(line, tqMakePair(text, TQString(""))); + m_annotations.insert(line, qMakePair(text, TQString(""))); if (markIf) markIf->setMark(line, KTextEditor::MarkInterface::markType08); uint line, column; @@ -3147,7 +3147,7 @@ void Document::setAnnotationText(uint line, const TQString& text) s.prepend(commentBegin + " "); s.append(" " + commentEnd + "\n"); insertText(s, true, true); - emit showAnnotation(line, "", tqMakePair(text, TQString(""))); + emit showAnnotation(line, "", qMakePair(text, TQString(""))); } } |
