diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2000-09-17 20:16:48 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2000-09-17 20:16:48 (GMT) |
commit | 1ba1b7f852780aa43c44261b10e9b2f9c2ebbe74 (patch) | |
tree | 5df3971c8b89c37c2b93458c23299e5fac81cf60 | |
parent | eb31c4be6b40007136845029ee462bdbcb342736 (diff) | |
download | Doxygen-1ba1b7f852780aa43c44261b10e9b2f9c2ebbe74.zip Doxygen-1ba1b7f852780aa43c44261b10e9b2f9c2ebbe74.tar.gz Doxygen-1ba1b7f852780aa43c44261b10e9b2f9c2ebbe74.tar.bz2 |
Fixed compile error with Qt-2.x
-rw-r--r-- | src/rtfgen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rtfgen.cpp b/src/rtfgen.cpp index b722d74..76059a1 100644 --- a/src/rtfgen.cpp +++ b/src/rtfgen.cpp @@ -670,7 +670,7 @@ void RTFGenerator::beginRTFDocument() ASSERT(index < array.size()); } if (array.at(index) != 0) - msg("Style '%s' redefines \\s%d.\n", iter.currentKey(), index); + msg("Style '%s' redefines \\s%d.\n", iter.currentKey().data(), index); array.at(index) = style; } |