diff options
Diffstat (limited to 'kplato/kptwbsdefinition.cc')
-rw-r--r-- | kplato/kptwbsdefinition.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kplato/kptwbsdefinition.cc b/kplato/kptwbsdefinition.cc index e25f9fe6..fd6b48aa 100644 --- a/kplato/kptwbsdefinition.cc +++ b/kplato/kptwbsdefinition.cc @@ -108,25 +108,25 @@ const TQChar Letters[] = { '?','a','b','c','d','e','f','g','h','i','j','k','l',' TQString WBSDefinition::code(CodeDef &def, uint index) { if (def.code == "Number") { - return TQString("%1").arg(index); + return TQString("%1").tqarg(index); } if (def.code == "Roman, lower case") { - return TQString("%1").arg(toRoman(index)); + return TQString("%1").tqarg(toRoman(index)); } if (def.code == "Roman, upper case") { - return TQString("%1").arg(toRoman(index, true)); + return TQString("%1").tqarg(toRoman(index, true)); } if (def.code == "Letter, lower case") { if (index > 26) { index = 0; } - return TQString("%1").arg(Letters[index]); + return TQString("%1").tqarg(Letters[index]); } if (def.code == "Letter, upper case") { if (index > 26) { index = 0; } - return TQString("%1").arg(Letters[index].upper()); + return TQString("%1").tqarg(Letters[index].upper()); } return TQString(); } @@ -140,7 +140,7 @@ const TQCString RNThousands[] = {"", "m", "mm", "mmm"}; TQString WBSDefinition::toRoman( int n, bool upper ) { if ( n >= 0 ) { - TQString s = TQString::fromLatin1( RNThousands[ ( n / 1000 ) ] + + TQString s = TQString::tqfromLatin1( RNThousands[ ( n / 1000 ) ] + RNHundreds[ ( n / 100 ) % 10 ] + RNTens[ ( n / 10 ) % 10 ] + RNUnits[ ( n ) % 10 ] ); |