diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
commit | 7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch) | |
tree | 8474f9b444b2756228600050f07a7ff25de532b2 /libksieve/ksieve/scriptbuilder.h | |
parent | f587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff) | |
download | tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libksieve/ksieve/scriptbuilder.h')
-rw-r--r-- | libksieve/ksieve/scriptbuilder.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libksieve/ksieve/scriptbuilder.h b/libksieve/ksieve/scriptbuilder.h index 5e0a955bb..28fd60879 100644 --- a/libksieve/ksieve/scriptbuilder.h +++ b/libksieve/ksieve/scriptbuilder.h @@ -43,18 +43,18 @@ namespace KSieve { public: virtual ~ScriptBuilder() {} - virtual void taggedArgument( const QString & tag ) = 0; - virtual void stringArgument( const QString & string, bool multiLine, const QString & embeddedHashComment ) = 0; + virtual void taggedArgument( const TQString & tag ) = 0; + virtual void stringArgument( const TQString & string, bool multiLine, const TQString & embeddedHashComment ) = 0; virtual void numberArgument( unsigned long number, char quantifier ) = 0; virtual void stringListArgumentStart() = 0; - virtual void stringListEntry( const QString & string, bool multiLine, const QString & embeddedHashComment ) = 0; + virtual void stringListEntry( const TQString & string, bool multiLine, const TQString & embeddedHashComment ) = 0; virtual void stringListArgumentEnd() = 0; - virtual void commandStart( const QString & identifier ) = 0; + virtual void commandStart( const TQString & identifier ) = 0; virtual void commandEnd() = 0; - virtual void testStart( const QString & identifier ) = 0; + virtual void testStart( const TQString & identifier ) = 0; virtual void testEnd() = 0; virtual void testListStart() = 0; @@ -64,9 +64,9 @@ namespace KSieve { virtual void blockEnd() = 0; /** A hash comment always includes an implicit lineFeed() at it's end. */ - virtual void hashComment( const QString & comment ) = 0; + virtual void hashComment( const TQString & comment ) = 0; /** Bracket comments inclde explicit lineFeed()s in their content */ - virtual void bracketComment( const QString & comment ) = 0; + virtual void bracketComment( const TQString & comment ) = 0; virtual void lineFeed() = 0; |