diff options
author | Timothy Pearson <[email protected]> | 2011-12-19 11:35:00 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-19 11:35:00 -0600 |
commit | 522c7294f06d294c77bc1ea7d0dec4b371c43373 (patch) | |
tree | 22e15f6e31eba6c17ce06d8e1b0de24ef8b8f002 /src/basketfactory.cpp | |
parent | 2a411f53a04f815770074b633e026a141f6fa875 (diff) | |
download | basket-522c7294f06d294c77bc1ea7d0dec4b371c43373.tar.gz basket-522c7294f06d294c77bc1ea7d0dec4b371c43373.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'src/basketfactory.cpp')
-rw-r--r-- | src/basketfactory.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/basketfactory.cpp b/src/basketfactory.cpp index ed01301..5c54fd3 100644 --- a/src/basketfactory.cpp +++ b/src/basketfactory.cpp @@ -76,12 +76,12 @@ TQString BasketFactory::unpackTemplate(const TQString &templateName) " <properties>\n" " <disposition mindMap=\"%1\" columnCount=\"%2\" free=\"%3\" />\n" " </properties>\n" - " <notes>\n" ).tqarg( (templateName == "mindmap" ? "true" : "false"), + " <notes>\n" ).arg( (templateName == "mindmap" ? "true" : "false"), TQString::number(nbColumns), (templateName == "free" || templateName == "mindmap" ? "true" : "false") ); if (nbColumns > 0) for (int i = 0; i < nbColumns; ++i) - stream << TQString(" <group width=\"%1\"></group>\n").tqarg(columnWidth); + stream << TQString(" <group width=\"%1\"></group>\n").arg(columnWidth); stream << " </notes>\n" "</basket>\n"; file.close(); |