diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:39:55 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:39:55 +0000 |
commit | 0a6e0958c03e41c87b15557b6f407874f20c2f8d (patch) | |
tree | 2cdd58c4013b1be09cfcbb4ddae2b05712b9aeee /kig/objects/bogus_imp.h | |
parent | 83f9dfafc157ff7823804b3ff457b43d021a5b4b (diff) | |
download | tdeedu-0a6e0958c03e41c87b15557b6f407874f20c2f8d.tar.gz tdeedu-0a6e0958c03e41c87b15557b6f407874f20c2f8d.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeedu@1157642 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kig/objects/bogus_imp.h')
-rw-r--r-- | kig/objects/bogus_imp.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/kig/objects/bogus_imp.h b/kig/objects/bogus_imp.h index 8e9386a8..c8f3ee2b 100644 --- a/kig/objects/bogus_imp.h +++ b/kig/objects/bogus_imp.h @@ -22,7 +22,7 @@ #include "../misc/object_hierarchy.h" #include "../misc/kigtransform.h" -#include <qstring.h> +#include <tqstring.h> /** * This is the base class for the so-called BogusImp's. These @@ -78,7 +78,7 @@ public: void visit( ObjectImpVisitor* vtor ) const; bool canFillInNextEscape() const; - void fillInNextEscape( QString& s, const KigDocument& ) const; + void fillInNextEscape( TQString& s, const KigDocument& ) const; bool equals( const ObjectImp& rhs ) const; }; @@ -117,7 +117,7 @@ public: void visit( ObjectImpVisitor* vtor ) const; bool canFillInNextEscape() const; - void fillInNextEscape( QString& s, const KigDocument& ) const; + void fillInNextEscape( TQString& s, const KigDocument& ) const; bool equals( const ObjectImp& rhs ) const; }; @@ -156,7 +156,7 @@ public: void visit( ObjectImpVisitor* vtor ) const; bool canFillInNextEscape() const; - void fillInNextEscape( QString& s, const KigDocument& ) const; + void fillInNextEscape( TQString& s, const KigDocument& ) const; bool equals( const ObjectImp& rhs ) const; }; @@ -167,7 +167,7 @@ public: class StringImp : public BogusImp { - QString mdata; + TQString mdata; public: /** * Returns the ObjectImpType representing the StringImp type.. @@ -178,16 +178,16 @@ public: /** * Construct a new StringImp containing the string d. */ - StringImp( const QString& d ); + StringImp( const TQString& d ); /** * Get hold of the contained data. */ - const QString& data() const { return mdata; } + const TQString& data() const { return mdata; } /** * Set the contained data. */ - void setData( const QString& s ) { mdata = s; } + void setData( const TQString& s ) { mdata = s; } StringImp* copy() const; @@ -195,7 +195,7 @@ public: void visit( ObjectImpVisitor* vtor ) const; bool canFillInNextEscape() const; - void fillInNextEscape( QString& s, const KigDocument& ) const; + void fillInNextEscape( TQString& s, const KigDocument& ) const; bool equals( const ObjectImp& rhs ) const; }; @@ -253,16 +253,16 @@ public: class TestResultImp : public BogusImp { - const QString mdata; + const TQString mdata; public: static const ObjectImpType* stype(); typedef BogusImp Parent; - TestResultImp( const QString& s ); + TestResultImp( const TQString& s ); TestResultImp* copy() const; - const QString& data() const { return mdata; } + const TQString& data() const { return mdata; } const ObjectImpType* type() const; void visit( ObjectImpVisitor* vtor ) const; |