diff options
author | Ben Boeckel <MathStuf@gmail.com> | 2009-02-24 00:18:06 -0500 |
---|---|---|
committer | Ben Boeckel <MathStuf@gmail.com> | 2009-02-24 00:18:06 -0500 |
commit | 160143d7232a46b7709c927f1cd99a6ad537ad1e (patch) | |
tree | 063c9c578d2c1e5f60f192be75207da37ad854d8 /sigmodr/tree/ObjectModel.cpp | |
parent | 29d5614a7adc53df57e666a8cab40c0dbf5dab0a (diff) | |
download | sigen-160143d7232a46b7709c927f1cd99a6ad537ad1e.tar.gz sigen-160143d7232a46b7709c927f1cd99a6ad537ad1e.tar.xz sigen-160143d7232a46b7709c927f1cd99a6ad537ad1e.zip |
Cleaned up namespacing in sigmodrtree
Diffstat (limited to 'sigmodr/tree/ObjectModel.cpp')
-rw-r--r-- | sigmodr/tree/ObjectModel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sigmodr/tree/ObjectModel.cpp b/sigmodr/tree/ObjectModel.cpp index 2bd230b4..4fee290a 100644 --- a/sigmodr/tree/ObjectModel.cpp +++ b/sigmodr/tree/ObjectModel.cpp @@ -40,12 +40,12 @@ int Sigmodr::ObjectModel::rowCount() const QVariant Sigmodr::ObjectModel::data(int role) const { - return Sigmodr::BaseObjectModel::data(role); + return BaseObjectModel::data(role); } bool Sigmodr::ObjectModel::setData(const QVariant& value, int role) { - if (role == Sigmodr::BaseModel::XmlRole) + if (role == BaseModel::XmlRole) { QString data = value.toString(); if (!data.isEmpty()) |