MCPcopy Create free account
hub / github.com/CE-Programming/CEmu / columnCount

Method columnCount

gui/qt/vartablemodel.cpp:283–288  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

281}
282
283int VarTableModel::columnCount(const QModelIndex &parent) const {
284 if (parent.isValid()) {
285 return 0;
286 }
287 return VAR_NUM_COLS;
288}
289
290VarTableSortFilterModel::VarTableSortFilterModel(VarTableModel *parent) : QSortFilterProxyModel(parent), typeFilter(-1) {
291 setSourceModel(parent);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected