Ticket #3101: subst.diff
| File subst.diff, 703 bytes (added by , 19 years ago) |
|---|
-
mythnews/mythnews/newsengine.cpp
384 384 s.replace("‘", QChar(8216)); 385 385 s.replace("’", QChar(8217)); 386 386 s.replace("'", "\'"); 387 s.replace("–", QChar(8211)); 388 // german umlauts 389 s.replace("ä", QChar(0x00e4)); 390 s.replace("ö", QChar(0x00f6)); 391 s.replace("ü", QChar(0x00fc)); 392 s.replace("Ä", QChar(0x00c4)); 393 s.replace("Ö", QChar(0x00d6)); 394 s.replace("Ü", QChar(0x00dc)); 395 s.replace("ß", QChar(0x00df)); 387 396 } 388 397
