summaryrefslogtreecommitdiffstats
path: root/kexi/plugins/macros/lib/variable.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:38:41 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:38:41 -0600
commitf0de9e167e289ab7dc33e57f077c1f04ec7c68c8 (patch)
tree1fc538e179833e62caec21956bfe47a252be5a72 /kexi/plugins/macros/lib/variable.cpp
parent11191ef0b9908604d1d7aaca382b011ef22c454c (diff)
downloadkoffice-f0de9e167e289ab7dc33e57f077c1f04ec7c68c8.tar.gz
koffice-f0de9e167e289ab7dc33e57f077c1f04ec7c68c8.zip
Remove additional unneeded tq method conversions
Diffstat (limited to 'kexi/plugins/macros/lib/variable.cpp')
-rw-r--r--kexi/plugins/macros/lib/variable.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/kexi/plugins/macros/lib/variable.cpp b/kexi/plugins/macros/lib/variable.cpp
index f64613b0c..3661ef9a0 100644
--- a/kexi/plugins/macros/lib/variable.cpp
+++ b/kexi/plugins/macros/lib/variable.cpp
@@ -58,10 +58,10 @@ namespace KoMacro {
const TQObject* object;
/**
- * Optional list of tqchildren this @a Variable has.
+ * Optional list of children this @a Variable has.
*/
// TODO Dow we use this or is it for the future??
- Variable::List tqchildren;
+ Variable::List children;
/**
* Defines if the variable is enabled or disabled.
@@ -199,7 +199,7 @@ const TQString Variable::toString() const
return variant().toString();
} break;
case KoMacro::MetaParameter::TypeObject: {
- return TQString("[%1]").tqarg( object()->name() );
+ return TQString("[%1]").arg( object()->name() );
} break;
default: {
throw Exception("Type is undefined.");
@@ -213,24 +213,24 @@ int Variable::toInt() const
return variant().toInt();
}
-Variable::List Variable::tqchildren() const
+Variable::List Variable::children() const
{
- return d->tqchildren;
+ return d->children;
}
void Variable::appendChild(KSharedPtr<Variable> variable)
{
- d->tqchildren.append(variable);
+ d->children.append(variable);
}
void Variable::clearChildren()
{
- d->tqchildren.clear();
+ d->children.clear();
}
-void Variable::setChildren(const Variable::List& tqchildren)
+void Variable::setChildren(const Variable::List& children)
{
- d->tqchildren = tqchildren;
+ d->children = children;
}
/*