diff options
Diffstat (limited to 'src/devices/base/generic_device.h')
-rw-r--r-- | src/devices/base/generic_device.h | 8 |
1 files changed, 4 insertions, 4 deletions
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<FrequencyRange> _frequencyRanges; MemoryTechnology _memoryTechnology; RegistersData *_registersData; |