diff options
Diffstat (limited to 'kbugbuster/backend/bugcommand.h')
-rw-r--r-- | kbugbuster/backend/bugcommand.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/kbugbuster/backend/bugcommand.h b/kbugbuster/backend/bugcommand.h index 9f68fb2e..e293517c 100644 --- a/kbugbuster/backend/bugcommand.h +++ b/kbugbuster/backend/bugcommand.h @@ -7,7 +7,7 @@ #include "bug.h" #include "package.h" -class KConfig; +class TDEConfig; class BugCommand { public: @@ -31,8 +31,8 @@ class BugCommand { virtual TQString type() const { return TQString(); } - virtual void save( KConfig * ) = 0; - static BugCommand *load( KConfig *, const TQString &type ); + virtual void save( TDEConfig * ) = 0; + static BugCommand *load( TDEConfig *, const TQString &type ); protected: Bug m_bug; @@ -53,7 +53,7 @@ class BugCommandClose : public BugCommand { TQString type() const { return TQString::fromLatin1("Close"); } - void save( KConfig * ); + void save( TDEConfig * ); private: TQString m_message; @@ -70,7 +70,7 @@ class BugCommandCloseSilently : public BugCommand { TQString type() const { return TQString::fromLatin1("CloseSilently"); } - void save( KConfig * ); + void save( TDEConfig * ); }; class BugCommandReopen : public BugCommand { @@ -84,7 +84,7 @@ class BugCommandReopen : public BugCommand { TQString type() const { return TQString::fromLatin1("Reopen"); } - void save( KConfig * ); + void save( TDEConfig * ); }; class BugCommandRetitle : public BugCommand { @@ -99,7 +99,7 @@ class BugCommandRetitle : public BugCommand { TQString type() const { return TQString::fromLatin1("Retitle"); } - void save( KConfig * ); + void save( TDEConfig * ); private: TQString m_title; @@ -117,7 +117,7 @@ class BugCommandMerge : public BugCommand { TQString type() const { return TQString::fromLatin1("Merge"); } - void save( KConfig * ); + void save( TDEConfig * ); private: TQStringList m_bugNumbers; @@ -132,7 +132,7 @@ class BugCommandUnmerge : public BugCommand { TQString type() const { return TQString::fromLatin1("Unmerge"); } - void save( KConfig * ); + void save( TDEConfig * ); TQString controlString() const; }; @@ -150,7 +150,7 @@ class BugCommandReply : public BugCommand { TQString type() const { return TQString::fromLatin1("Reply"); } - void save( KConfig * ); + void save( TDEConfig * ); private: TQString m_message; @@ -171,7 +171,7 @@ class BugCommandReplyPrivate : public BugCommand { TQString type() const { return TQString::fromLatin1("ReplyPrivate"); } - void save( KConfig * ); + void save( TDEConfig * ); private: TQString m_address; @@ -190,7 +190,7 @@ class BugCommandSeverity : public BugCommand { TQString controlString() const; - void save( KConfig * ); + void save( TDEConfig * ); private: TQString m_severity; @@ -208,7 +208,7 @@ class BugCommandReassign : public BugCommand { TQString controlString() const; - void save( KConfig * ); + void save( TDEConfig * ); private: TQString m_package; |