mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Make the Channel ID consistantly of Type Channel ID
Signed-off-by: Mark Watkins <jedimark@users.sourceforge.net>
This commit is contained in:
parent
0e03e4deef
commit
36b9cc8e16
@ -305,7 +305,7 @@ void init()
|
||||
ZEO_TimeToZ=schema::channel["TimeToZ"].id();
|
||||
}
|
||||
|
||||
Channel::Channel(int id, ChanType type, ScopeType scope, QString code, QString fullname, QString description, QString label, QString unit, DataType datatype, QColor color, int link):
|
||||
Channel::Channel(ChannelID id, ChanType type, ScopeType scope, QString code, QString fullname, QString description, QString label, QString unit, DataType datatype, QColor color, int link):
|
||||
m_id(id),
|
||||
m_type(type),
|
||||
m_scope(scope),
|
||||
|
@ -53,7 +53,7 @@ class Channel
|
||||
{
|
||||
public:
|
||||
Channel() { m_id=0; }
|
||||
Channel(int id, ChanType type, ScopeType scope, QString code, QString fullname, QString description, QString label, QString unit,DataType datatype=DEFAULT, QColor=Qt::black, int link=0);
|
||||
Channel(ChannelID id, ChanType type, ScopeType scope, QString code, QString fullname, QString description, QString label, QString unit,DataType datatype=DEFAULT, QColor=Qt::black, int link=0);
|
||||
void addColor(Function f, QColor color) { m_colors[f]=color; }
|
||||
void addOption(int i, QString option) { m_options[i]=option; }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user