summaryrefslogtreecommitdiffstats
path: root/sigmodr/tree/SigmodrTreeModel.cpp
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2009-03-22 16:49:38 -0400
committerBen Boeckel <MathStuf@gmail.com>2009-03-22 16:49:38 -0400
commit4fb5cf2efb299150aff67e9d7ef2d474143b4f10 (patch)
tree9374519548682cee4002f31085c1858d31dcf47f /sigmodr/tree/SigmodrTreeModel.cpp
parent6149ae96855e380c24b790deefeb4a2a2f1e2975 (diff)
downloadsigen-4fb5cf2efb299150aff67e9d7ef2d474143b4f10.tar.gz
sigen-4fb5cf2efb299150aff67e9d7ef2d474143b4f10.tar.xz
sigen-4fb5cf2efb299150aff67e9d7ef2d474143b4f10.zip
Remove headerData method from SigmodrTreeModel
Diffstat (limited to 'sigmodr/tree/SigmodrTreeModel.cpp')
-rw-r--r--sigmodr/tree/SigmodrTreeModel.cpp8
1 files changed, 0 insertions, 8 deletions
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))