Add Channel viewer and selector and support for Ox messages

This commit is contained in:
2023-01-15 16:52:33 -06:00
parent 021a7b0561
commit d269864c70
19 changed files with 867 additions and 203 deletions

View File

@@ -10,11 +10,11 @@
#include "callstackmodel.hpp"
int CallStackModel::rowCount(const QModelIndex &parent) const {
int CallStackModel::rowCount(const QModelIndex&) const {
return m_frames.size();
}
int CallStackModel::columnCount(const QModelIndex &parent) const {
int CallStackModel::columnCount(const QModelIndex&) const {
return Column::End;
}