diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-09-18 18:00:58 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-09-18 18:00:58 (GMT) |
commit | cabe22de82107be7b828cb771b1b3c6be4ab8660 (patch) | |
tree | c0d69f87d1d6d5969bcc6bf34d1cba34d8070cc1 /src | |
parent | ccd28391e6030af5d6615f504bb8f9fde886b2a6 (diff) | |
download | Doxygen-cabe22de82107be7b828cb771b1b3c6be4ab8660.zip Doxygen-cabe22de82107be7b828cb771b1b3c6be4ab8660.tar.gz Doxygen-cabe22de82107be7b828cb771b1b3c6be4ab8660.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; } |