blob: 0fa5e34e840e948aa699a0fc12e47820e272564b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
Index: kword-2.1.2/filters/kword/msword-odf/texthandler.cpp
===================================================================
--- kword-2.1.2.orig/filters/kword/msword-odf/texthandler.cpp
+++ kword-2.1.2/filters/kword/msword-odf/texthandler.cpp
@@ -863,7 +863,7 @@ bool KWordTextHandler::writeListInfo(KoX
unsigned int code = text[0].unicode();
if ( (code & 0xFF00) == 0xF000 ) // see wv2
code &= 0x00FF;
- listStyleWriter.addAttribute( "text:bullet-char", QString::QString( code ).toUtf8() );
+ listStyleWriter.addAttribute( "text:bullet-char", QString( code ).toUtf8() );
}
else
kWarning(30513) << "Bullet with more than one character, not supported";
|