From 4fb5cf2efb299150aff67e9d7ef2d474143b4f10 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Sun, 22 Mar 2009 16:49:38 -0400 Subject: Remove headerData method from SigmodrTreeModel --- sigmodr/tree/SigmodrTreeModel.cpp | 8 -------- 1 file changed, 8 deletions(-) (limited to 'sigmodr/tree/SigmodrTreeModel.cpp') diff --git a/sigmodr/tree/SigmodrTreeModel.cpp b/sigmodr/tree/SigmodrTreeModel.cpp index 1dcba153..5e44952a 100644 --- a/sigmodr/tree/SigmodrTreeModel.cpp +++ b/sigmodr/tree/SigmodrTreeModel.cpp @@ -53,14 +53,6 @@ QVariant SigmodrTreeModel::data(const QModelIndex& index, int role) const return object->data(role); } -QVariant SigmodrTreeModel::headerData(int section, Qt::Orientation orientation, int role) const -{ - Q_UNUSED(section) - Q_UNUSED(orientation) - Q_UNUSED(role) - return QVariant(); -} - QModelIndex SigmodrTreeModel::index(int row, int column, const QModelIndex& parent) const { if ((row < -1) || (column < -1)) -- cgit