summaryrefslogtreecommitdiffstats
path: root/libksieve/ksieve/scriptbuilder.h
diff options
context:
space:
mode:
Diffstat (limited to 'libksieve/ksieve/scriptbuilder.h')
-rw-r--r--libksieve/ksieve/scriptbuilder.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/libksieve/ksieve/scriptbuilder.h b/libksieve/ksieve/scriptbuilder.h
index 5e0a955b..28fd6087 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;