summaryrefslogtreecommitdiff
path: root/src/gui/widgets/namesmodel.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/widgets/namesmodel.h')
-rw-r--r--src/gui/widgets/namesmodel.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gui/widgets/namesmodel.h b/src/gui/widgets/namesmodel.h
index 3f9f10b52..dc694fc46 100644
--- a/src/gui/widgets/namesmodel.h
+++ b/src/gui/widgets/namesmodel.h
@@ -38,6 +38,12 @@ class NamesModel : public gcn::ListModel
virtual std::string getElementAt(int i);
+ std::vector<std::string> &getNames()
+ { return mNames; }
+
+ size_t size()
+ { return mNames.size(); }
+
protected:
std::vector<std::string> mNames;
};