diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2000-09-18 18:00:58 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2000-09-18 18:00:58 (GMT) |
commit | 34c1092a798a7792037fbe32acfb50dfebf84dc3 (patch) | |
tree | c0d69f87d1d6d5969bcc6bf34d1cba34d8070cc1 /src | |
parent | 1ba1b7f852780aa43c44261b10e9b2f9c2ebbe74 (diff) | |
download | Doxygen-34c1092a798a7792037fbe32acfb50dfebf84dc3.zip Doxygen-34c1092a798a7792037fbe32acfb50dfebf84dc3.tar.gz Doxygen-34c1092a798a7792037fbe32acfb50dfebf84dc3.tar.bz2 |
File should now work with all Qt versions.
Diffstat (limited to 'src')
-rw-r--r-- | src/rtfgen.cpp | 5 |
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; } |