summaryrefslogtreecommitdiffstats
path: root/kbugbuster/backend/bugcommand.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:37:49 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:37:49 -0600
commitf8069e2ea048f2657cc417d83820576ec55c181b (patch)
treecbc5bf540866934a91e0f33b260fc7a25e191fad /kbugbuster/backend/bugcommand.h
parente6aaa3624cc6179b82a9bfff1760e742a669064c (diff)
downloadtdesdk-f8069e2ea048f2657cc417d83820576ec55c181b.tar.gz
tdesdk-f8069e2ea048f2657cc417d83820576ec55c181b.zip
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'kbugbuster/backend/bugcommand.h')
-rw-r--r--kbugbuster/backend/bugcommand.h26
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;