diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:37:08 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:37:08 -0600 |
commit | c70e40bd3f54a2c4d9ef57a36f19c996f4e00ed6 (patch) | |
tree | 9a07481bb1245dac332e7db600c556e1db79ecf3 /kmymoney2/reports/reportstestcommon.cpp | |
parent | 28723595822268551d3e050c3a83bf6ca5e17dd5 (diff) | |
download | kmymoney-c70e40bd3f54a2c4d9ef57a36f19c996f4e00ed6.tar.gz kmymoney-c70e40bd3f54a2c4d9ef57a36f19c996f4e00ed6.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'kmymoney2/reports/reportstestcommon.cpp')
-rw-r--r-- | kmymoney2/reports/reportstestcommon.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kmymoney2/reports/reportstestcommon.cpp b/kmymoney2/reports/reportstestcommon.cpp index eac6193..44f90df 100644 --- a/kmymoney2/reports/reportstestcommon.cpp +++ b/kmymoney2/reports/reportstestcommon.cpp @@ -319,7 +319,7 @@ void writeTabletoHTML( const PivotTable& table, const TQString& _filename ) TQString filename = _filename; if ( filename.isEmpty() ) { - filename = TQString("report-%1%2.html").tqarg((filenumber<10)?"0":"").tqarg(filenumber); + filename = TQString("report-%1%2.html").arg((filenumber<10)?"0":"").arg(filenumber); ++filenumber; } @@ -336,7 +336,7 @@ void writeTabletoHTML( const QueryTable& table, const TQString& _filename ) TQString filename = _filename; if ( filename.isEmpty() ) { - filename = TQString("report-%1%2.html").tqarg((filenumber<10)?"0":"").tqarg(filenumber); + filename = TQString("report-%1%2.html").arg((filenumber<10)?"0":"").arg(filenumber); ++filenumber; } @@ -352,7 +352,7 @@ void writeTabletoCSV( const PivotTable& table, const TQString& _filename ) TQString filename = _filename; if ( filename.isEmpty() ) { - filename = TQString("report-%1%2.csv").tqarg((filenumber<10)?"0":"").tqarg(filenumber); + filename = TQString("report-%1%2.csv").arg((filenumber<10)?"0":"").arg(filenumber); ++filenumber; } @@ -369,7 +369,7 @@ void writeTabletoCSV( const QueryTable& table, const TQString& _filename ) TQString filename = _filename; if ( filename.isEmpty() ) { - filename = TQString("qreport-%1%2.csv").tqarg((filenumber<10)?"0":"").tqarg(filenumber); + filename = TQString("qreport-%1%2.csv").arg((filenumber<10)?"0":"").arg(filenumber); ++filenumber; } @@ -385,7 +385,7 @@ void writeRCFtoXML( const MyMoneyReport& filter, const TQString& _filename ) static unsigned filenum = 1; TQString filename = _filename; if ( filename.isEmpty() ) { - filename = TQString("report-%1%2.xml").tqarg(TQString::number(filenum).rightJustify(2, '0')); + filename = TQString("report-%1%2.xml").arg(TQString::number(filenum).rightJustify(2, '0')); ++filenum; } @@ -481,7 +481,7 @@ void XMLandback( MyMoneyReport& filter ) MyMoneyMoney searchHTML(const TQString& _html, const TQString& _search) { - TQRegExp re(TQString("%1[<>/td]*([\\-.0-9,]*)").tqarg(_search)); + TQRegExp re(TQString("%1[<>/td]*([\\-.0-9,]*)").arg(_search)); re.search(_html); TQString found = re.cap(1); found.remove(','); |