summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2000-09-18 18:00:58 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2000-09-18 18:00:58 (GMT)
commitcabe22de82107be7b828cb771b1b3c6be4ab8660 (patch)
treec0d69f87d1d6d5969bcc6bf34d1cba34d8070cc1
parentccd28391e6030af5d6615f504bb8f9fde886b2a6 (diff)
downloadDoxygen-cabe22de82107be7b828cb771b1b3c6be4ab8660.zip
Doxygen-cabe22de82107be7b828cb771b1b3c6be4ab8660.tar.gz
Doxygen-cabe22de82107be7b828cb771b1b3c6be4ab8660.tar.bz2
File should now work with all Qt versions.
-rw-r--r--src/rtfgen.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/rtfgen.cpp b/src/rtfgen.cpp
index 76059a1..cff0ce4 100644
--- a/src/rtfgen.cpp
+++ b/src/rtfgen.cpp
@@ -670,7 +670,10 @@ void RTFGenerator::beginRTFDocument()
ASSERT(index < array.size());
}
if (array.at(index) != 0)
- msg("Style '%s' redefines \\s%d.\n", iter.currentKey().data(), index);
+ {
+ QCString key(iter.currentKey());
+ msg("Style '%s' redefines \\s%d.\n", key.data(), index);
+ }
array.at(index) = style;
}