Rename JS8CallExtended to JS8CallFlag
This commit is contained in:
parent
223a4a2183
commit
9079d45587
@ -9019,7 +9019,7 @@ void MainWindow::processCompoundActivity() {
|
|||||||
bits == Varicode::JS8Call ||
|
bits == Varicode::JS8Call ||
|
||||||
((bits & Varicode::JS8CallFirst) == Varicode::JS8CallFirst) ||
|
((bits & Varicode::JS8CallFirst) == Varicode::JS8CallFirst) ||
|
||||||
((bits & Varicode::JS8CallLast) == Varicode::JS8CallLast) ||
|
((bits & Varicode::JS8CallLast) == Varicode::JS8CallLast) ||
|
||||||
((bits & Varicode::JS8CallExtended) == Varicode::JS8CallExtended)
|
((bits & Varicode::JS8CallFlag) == Varicode::JS8CallFlag)
|
||||||
);
|
);
|
||||||
if (!validBits) {
|
if (!validBits) {
|
||||||
qDebug() << "-> buffer.cmd bits is invalid...skip";
|
qDebug() << "-> buffer.cmd bits is invalid...skip";
|
||||||
|
@ -21,7 +21,7 @@ public:
|
|||||||
JS8Call = 0, // [000] <- any other frame of the message
|
JS8Call = 0, // [000] <- any other frame of the message
|
||||||
JS8CallFirst = 1, // [001] <- the first frame of a message
|
JS8CallFirst = 1, // [001] <- the first frame of a message
|
||||||
JS8CallLast = 2, // [010] <- the last frame of a message
|
JS8CallLast = 2, // [010] <- the last frame of a message
|
||||||
JS8CallExtended = 4, // [100] <- extended frame (no frame type header)
|
JS8CallFlag = 4, // [100] <- flagged frame (no frame type header)
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user