summaryrefslogtreecommitdiffstats
path: root/kode/typedef.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kode/typedef.cpp')
-rw-r--r--kode/typedef.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kode/typedef.cpp b/kode/typedef.cpp
index 10b2df46..d8ccb059 100644
--- a/kode/typedef.cpp
+++ b/kode/typedef.cpp
@@ -27,12 +27,12 @@ Typedef::Typedef()
{
}
-Typedef::Typedef( const QString &type, const QString &alias )
+Typedef::Typedef( const TQString &type, const TQString &alias )
: mType( type ), mAlias( alias )
{
}
-QString Typedef::declaration() const
+TQString Typedef::declaration() const
{
return "typedef " + mType + " " + mAlias + ";";
}