summaryrefslogtreecommitdiffstats
path: root/kplato/kptwbsdefinition.cc
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-12-15 15:32:11 -0600
committerTimothy Pearson <[email protected]>2011-12-15 15:32:11 -0600
commit94844816550ad672ccfcdc25659c625546239998 (patch)
treee35fc60fd736c645d59f6408af032774ad8023d3 /kplato/kptwbsdefinition.cc
parent2a811c38c74c03648ecf857e566c44483cbad706 (diff)
downloadkoffice-94844816550ad672ccfcdc25659c625546239998.tar.gz
koffice-94844816550ad672ccfcdc25659c625546239998.zip
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'kplato/kptwbsdefinition.cc')
-rw-r--r--kplato/kptwbsdefinition.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/kplato/kptwbsdefinition.cc b/kplato/kptwbsdefinition.cc
index fd6b48aa..e25f9fe6 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").tqarg(index);
+ return TQString("%1").arg(index);
}
if (def.code == "Roman, lower case") {
- return TQString("%1").tqarg(toRoman(index));
+ return TQString("%1").arg(toRoman(index));
}
if (def.code == "Roman, upper case") {
- return TQString("%1").tqarg(toRoman(index, true));
+ return TQString("%1").arg(toRoman(index, true));
}
if (def.code == "Letter, lower case") {
if (index > 26) {
index = 0;
}
- return TQString("%1").tqarg(Letters[index]);
+ return TQString("%1").arg(Letters[index]);
}
if (def.code == "Letter, upper case") {
if (index > 26) {
index = 0;
}
- return TQString("%1").tqarg(Letters[index].upper());
+ return TQString("%1").arg(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::tqfromLatin1( RNThousands[ ( n / 1000 ) ] +
+ TQString s = TQString::fromLatin1( RNThousands[ ( n / 1000 ) ] +
RNHundreds[ ( n / 100 ) % 10 ] +
RNTens[ ( n / 10 ) % 10 ] +
RNUnits[ ( n ) % 10 ] );