summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2000-09-18 18:00:58 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2000-09-18 18:00:58 (GMT)
commit34c1092a798a7792037fbe32acfb50dfebf84dc3 (patch)
treec0d69f87d1d6d5969bcc6bf34d1cba34d8070cc1
parent1ba1b7f852780aa43c44261b10e9b2f9c2ebbe74 (diff)
downloadDoxygen-34c1092a798a7792037fbe32acfb50dfebf84dc3.zip
Doxygen-34c1092a798a7792037fbe32acfb50dfebf84dc3.tar.gz
Doxygen-34c1092a798a7792037fbe32acfb50dfebf84dc3.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;
}