summaryrefslogtreecommitdiffstats
path: root/src/basketfactory.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:29:20 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:29:20 -0600
commit882bcd26b3d60be72ea2b35921969a9850c52db9 (patch)
tree8d0a6902c5de4632c4e73e35c4d86404fa75f470 /src/basketfactory.cpp
parentc82058b2b64334c10d7e547cb81ac64efe09f516 (diff)
downloadbasket-882bcd26b3d60be72ea2b35921969a9850c52db9.tar.gz
basket-882bcd26b3d60be72ea2b35921969a9850c52db9.zip
Rename a number of old tq methods that are no longer tq specific
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();