diff options
Diffstat (limited to 'kode/typedef.cpp')
-rw-r--r-- | kode/typedef.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kode/typedef.cpp b/kode/typedef.cpp index 10b2df46b..d8ccb0594 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 + ";"; } |