Commit 34c1092a authored by Dimitri van Heesch's avatar Dimitri van Heesch

File should now work with all Qt versions.

parent 1ba1b7f8
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment