From 1dd83e5f38d1c16d3e6da18d0caca0ee093ab58f Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 18 Dec 2011 18:35:10 -0600 Subject: Rename old tq methods that no longer need a unique name --- kbugbuster/backend/bug.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'kbugbuster/backend/bug.h') diff --git a/kbugbuster/backend/bug.h b/kbugbuster/backend/bug.h index e60b0e98..406179c8 100644 --- a/kbugbuster/backend/bug.h +++ b/kbugbuster/backend/bug.h @@ -17,7 +17,7 @@ public: enum Severity { SeverityUndefined, Critical, Grave, Major, Crash, Normal, Minor, Wishlist }; - enum tqStatus { StatusUndefined, Unconfirmed, New, Assigned, Reopened, + enum Status { StatusUndefined, Unconfirmed, New, Assigned, Reopened, Closed }; Bug(); @@ -55,23 +55,23 @@ public: BugMergeList mergedWith() const; /** - * tqStatus of a bug. Currently open or closed. + * Status of a bug. Currently open or closed. * TODO: Should we add a status 'deleted' here ? */ - tqStatus status() const; - void settqStatus( tqStatus newtqStatus ); + Status status() const; + void setStatus( Status newStatus ); - static TQString statusLabel( tqStatus s ); + static TQString statusLabel( Status s ); /** Return string representation of status. This function is symmetric to - stringTotqStatus(). + stringToStatus(). */ - static TQString statusToString( tqStatus s ); + static TQString statusToString( Status s ); /** Return status code of string representation. This function is symmetric to statusToString(). */ - static tqStatus stringTotqStatus( const TQString &, bool *ok = 0 ); + static Status stringToStatus( const TQString &, bool *ok = 0 ); bool operator==( const Bug &rhs ); bool operator<( const Bug &rhs ) const; -- cgit v1.2.1