Show Object related errors in X/26 triplet list

This commit is contained in:
G.K.MacGregor
2022-04-05 22:11:01 +01:00
parent e16bb15310
commit 661a85066b
3 changed files with 31 additions and 16 deletions

View File

@@ -25,7 +25,8 @@
class X26Triplet
{
public:
enum X26TripletError { NoError, ActivePositionMovedUp, ActivePositionMovedLeft };
// x26model.h has the Plain English descriptions of these errors
enum X26TripletError { NoError, ActivePositionMovedUp, ActivePositionMovedLeft, InvokePointerInvalid, InvokeTypeMismatch, OriginModifierAlone };
X26Triplet() {}
// X26Triplet(const X26Triplet &other);
@@ -84,7 +85,7 @@ public:
int size() const { return m_list.size(); }
private:
void updateInternalData(int);
void updateInternalData();
QList<X26Triplet> m_list;