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/messages | |
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/messages')
-rw-r--r-- | quanta/messages/annotationoutput.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quanta/messages/annotationoutput.cpp b/quanta/messages/annotationoutput.cpp index 418f7f17..58b3044e 100644 --- a/quanta/messages/annotationoutput.cpp +++ b/quanta/messages/annotationoutput.cpp @@ -324,7 +324,7 @@ void AnnotationOutput::updateAnnotationForFile(const KURL& url) } else pos++; int pos2 = line.find(rx); - annotations.insert(i, tqMakePair(line.mid(pos, pos2 - pos).stripWhiteSpace(), receiver)); + annotations.insert(i, qMakePair(line.mid(pos, pos2 - pos).stripWhiteSpace(), receiver)); } ++i; } |