summaryrefslogtreecommitdiffstats
path: root/src/basketfactory.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:35:00 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:35:00 -0600
commit522c7294f06d294c77bc1ea7d0dec4b371c43373 (patch)
tree22e15f6e31eba6c17ce06d8e1b0de24ef8b8f002 /src/basketfactory.cpp
parent2a411f53a04f815770074b633e026a141f6fa875 (diff)
downloadbasket-522c7294f06d294c77bc1ea7d0dec4b371c43373.tar.gz
basket-522c7294f06d294c77bc1ea7d0dec4b371c43373.zip
Remove additional unneeded tq method conversions
Diffstat (limited to 'src/basketfactory.cpp')
-rw-r--r--src/basketfactory.cpp4
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();