From 9d9fe02a944fe0719c2475739411727a729251ad Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 18 Dec 2011 18:14:26 -0600 Subject: Rename old tq methods that no longer need a unique name --- src/devices/base/generic_device.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/devices/base/generic_device.h') diff --git a/src/devices/base/generic_device.h b/src/devices/base/generic_device.h index 73f9b15..4b52060 100644 --- a/src/devices/base/generic_device.h +++ b/src/devices/base/generic_device.h @@ -19,9 +19,9 @@ namespace Device { //---------------------------------------------------------------------------- -BEGIN_DECLARE_ENUM(tqStatus) +BEGIN_DECLARE_ENUM(Status) InProduction = 0, Future, NotRecommended, EOL, Unknown, Mature -END_DECLARE_ENUM_STD(tqStatus) +END_DECLARE_ENUM_STD(Status) BEGIN_DECLARE_ENUM(MemoryTechnology) Flash = 0, Eprom, Rom, Romless @@ -121,7 +121,7 @@ public: virtual TQString name() const { return _name; } virtual TQString fname(Special) const { return _name; } virtual TQString listViewGroup() const = 0; - tqStatus status() const { return _status; } + Status status() const { return _status; } const Documents &documents() const { return _documents; } const TQStringList &alternatives() const { return _alternatives; } MemoryTechnology memoryTechnology() const { return _memoryTechnology; } @@ -141,7 +141,7 @@ protected: TQString _name; Documents _documents; TQStringList _alternatives; - tqStatus _status; + Status _status; TQValueVector _frequencyRanges; MemoryTechnology _memoryTechnology; RegistersData *_registersData; -- cgit v1.2.1