summaryrefslogtreecommitdiffstats
path: root/kbugbuster/backend/bugcommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'kbugbuster/backend/bugcommand.h')
-rw-r--r--kbugbuster/backend/bugcommand.h132
1 files changed, 66 insertions, 66 deletions
diff --git a/kbugbuster/backend/bugcommand.h b/kbugbuster/backend/bugcommand.h
index 96b9c85c..38b2513f 100644
--- a/kbugbuster/backend/bugcommand.h
+++ b/kbugbuster/backend/bugcommand.h
@@ -1,8 +1,8 @@
#ifndef BUGCOMMAND_H
#define BUGCOMMAND_H
-#include <qstring.h>
-#include <qstringlist.h>
+#include <tqstring.h>
+#include <tqstringlist.h>
#include "bug.h"
#include "package.h"
@@ -18,21 +18,21 @@ class BugCommand {
BugCommand( const Bug &bug, const Package &pkg ) : m_bug( bug ), m_package( pkg ) {}
virtual ~BugCommand() {}
- virtual QString controlString() const { return QString::null; }
+ virtual TQString controlString() const { return TQString::null; }
- virtual QString mailAddress() const { return QString::null; }
- virtual QString mailText() const { return QString::null; }
+ virtual TQString mailAddress() const { return TQString::null; }
+ virtual TQString mailText() const { return TQString::null; }
Bug bug() const { return m_bug; }
Package package() const { return m_package; }
- virtual QString name();
- virtual QString details();
+ virtual TQString name();
+ virtual TQString details();
- virtual QString type() const { return QString::null; }
+ virtual TQString type() const { return TQString::null; }
virtual void save( KConfig * ) = 0;
- static BugCommand *load( KConfig *, const QString &type );
+ static BugCommand *load( KConfig *, const TQString &type );
protected:
Bug m_bug;
@@ -41,22 +41,22 @@ class BugCommand {
class BugCommandClose : public BugCommand {
public:
- BugCommandClose( const Bug &bug, const QString &message, const Package &pkg ) :
+ BugCommandClose( const Bug &bug, const TQString &message, const Package &pkg ) :
BugCommand( bug, pkg ), m_message( message ) {}
- QString controlString() const;
- QString mailAddress() const;
- QString mailText() const;
+ TQString controlString() const;
+ TQString mailAddress() const;
+ TQString mailText() const;
- QString name();
- QString details() const;
+ TQString name();
+ TQString details() const;
- QString type() const { return QString::fromLatin1("Close"); }
+ TQString type() const { return TQString::fromLatin1("Close"); }
void save( KConfig * );
private:
- QString m_message;
+ TQString m_message;
};
class BugCommandCloseSilently : public BugCommand {
@@ -64,11 +64,11 @@ class BugCommandCloseSilently : public BugCommand {
BugCommandCloseSilently( const Bug &bug, const Package &pkg ) :
BugCommand( bug, pkg ) {}
- QString controlString() const;
+ TQString controlString() const;
- QString name();
+ TQString name();
- QString type() const { return QString::fromLatin1("CloseSilently"); }
+ TQString type() const { return TQString::fromLatin1("CloseSilently"); }
void save( KConfig * );
};
@@ -78,49 +78,49 @@ class BugCommandReopen : public BugCommand {
BugCommandReopen( const Bug &bug, const Package &pkg ) :
BugCommand( bug, pkg ) {}
- QString controlString() const;
+ TQString controlString() const;
- QString name();
+ TQString name();
- QString type() const { return QString::fromLatin1("Reopen"); }
+ TQString type() const { return TQString::fromLatin1("Reopen"); }
void save( KConfig * );
};
class BugCommandRetitle : public BugCommand {
public:
- BugCommandRetitle( const Bug &bug, const QString &title, const Package &pkg ) :
+ BugCommandRetitle( const Bug &bug, const TQString &title, const Package &pkg ) :
BugCommand( bug, pkg ), m_title( title ) {}
- QString controlString() const;
+ TQString controlString() const;
- QString name();
- QString details() const;
+ TQString name();
+ TQString details() const;
- QString type() const { return QString::fromLatin1("Retitle"); }
+ TQString type() const { return TQString::fromLatin1("Retitle"); }
void save( KConfig * );
private:
- QString m_title;
+ TQString m_title;
};
class BugCommandMerge : public BugCommand {
public:
- BugCommandMerge( const QStringList &bugNumbers, const Package &pkg ) :
+ BugCommandMerge( const TQStringList &bugNumbers, const Package &pkg ) :
BugCommand( Bug(), pkg ), m_bugNumbers( bugNumbers ) {}
- QString controlString() const;
+ TQString controlString() const;
- QString name();
- QString details() const;
+ TQString name();
+ TQString details() const;
- QString type() const { return QString::fromLatin1("Merge"); }
+ TQString type() const { return TQString::fromLatin1("Merge"); }
void save( KConfig * );
private:
- QStringList m_bugNumbers;
+ TQStringList m_bugNumbers;
};
class BugCommandUnmerge : public BugCommand {
@@ -128,90 +128,90 @@ class BugCommandUnmerge : public BugCommand {
BugCommandUnmerge( const Bug &bug, const Package &pkg ) :
BugCommand( bug, pkg ) {}
- QString name();
+ TQString name();
- QString type() const { return QString::fromLatin1("Unmerge"); }
+ TQString type() const { return TQString::fromLatin1("Unmerge"); }
void save( KConfig * );
- QString controlString() const;
+ TQString controlString() const;
};
class BugCommandReply : public BugCommand {
public:
- BugCommandReply( const Bug &bug, const QString &message, const int &recipient) :
+ BugCommandReply( const Bug &bug, const TQString &message, const int &recipient) :
BugCommand( bug ), m_message( message ), m_recipient( recipient ) {}
- QString mailAddress() const;
- QString mailText() const;
+ TQString mailAddress() const;
+ TQString mailText() const;
- QString name();
- QString details() const;
+ TQString name();
+ TQString details() const;
- QString type() const { return QString::fromLatin1("Reply"); }
+ TQString type() const { return TQString::fromLatin1("Reply"); }
void save( KConfig * );
private:
- QString m_message;
+ TQString m_message;
int m_recipient;
};
class BugCommandReplyPrivate : public BugCommand {
public:
- BugCommandReplyPrivate( const Bug &bug, const QString &address,
- const QString &message ) :
+ BugCommandReplyPrivate( const Bug &bug, const TQString &address,
+ const TQString &message ) :
BugCommand( bug ), m_address( address ), m_message( message ) {}
- QString mailAddress() const;
- QString mailText() const;
+ TQString mailAddress() const;
+ TQString mailText() const;
- QString name();
- QString details() const;
+ TQString name();
+ TQString details() const;
- QString type() const { return QString::fromLatin1("ReplyPrivate"); }
+ TQString type() const { return TQString::fromLatin1("ReplyPrivate"); }
void save( KConfig * );
private:
- QString m_address;
- QString m_message;
+ TQString m_address;
+ TQString m_message;
};
class BugCommandSeverity : public BugCommand {
public:
- BugCommandSeverity( const Bug &bug, const QString &severity, const Package &pkg ) :
+ BugCommandSeverity( const Bug &bug, const TQString &severity, const Package &pkg ) :
BugCommand( bug, pkg ), m_severity( severity ) {}
- QString name();
- QString details() const;
+ TQString name();
+ TQString details() const;
- QString type() const { return QString::fromLatin1("Severity"); }
+ TQString type() const { return TQString::fromLatin1("Severity"); }
- QString controlString() const;
+ TQString controlString() const;
void save( KConfig * );
private:
- QString m_severity;
+ TQString m_severity;
};
class BugCommandReassign : public BugCommand {
public:
- BugCommandReassign( const Bug &bug, const QString &package, const Package &pkg ) :
+ BugCommandReassign( const Bug &bug, const TQString &package, const Package &pkg ) :
BugCommand( bug, pkg ), m_package( package ) {}
- QString name();
- QString details() const;
+ TQString name();
+ TQString details() const;
- QString type() const { return QString::fromLatin1("Reassign"); }
+ TQString type() const { return TQString::fromLatin1("Reassign"); }
- QString controlString() const;
+ TQString controlString() const;
void save( KConfig * );
private:
- QString m_package;
+ TQString m_package;
};
#endif