summaryrefslogtreecommitdiff
path: root/project2/urlRows.h
diff options
context:
space:
mode:
authorrandomdan <randomdan@localhost>2011-02-01 21:13:39 +0000
committerrandomdan <randomdan@localhost>2011-02-01 21:13:39 +0000
commit417ff6847eac27b9892429173d2fa28abfe2d2a9 (patch)
tree026a2c3aac2748f089406f260b81499125da69ed /project2/urlRows.h
parentCall curl global cleanup when finished (diff)
downloadproject2-417ff6847eac27b9892429173d2fa28abfe2d2a9.tar.bz2
project2-417ff6847eac27b9892429173d2fa28abfe2d2a9.tar.xz
project2-417ff6847eac27b9892429173d2fa28abfe2d2a9.zip
Add lots of funky stuff to make the system (internally) type safe
Diffstat (limited to 'project2/urlRows.h')
-rw-r--r--project2/urlRows.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/project2/urlRows.h b/project2/urlRows.h
index ea09fee..7b60400 100644
--- a/project2/urlRows.h
+++ b/project2/urlRows.h
@@ -17,8 +17,8 @@ class UrlRows : public RowSet {
virtual void setFilter(const Glib::ustring &);
unsigned int columnCount() const;
const Glib::ustring & getColumnName(unsigned int col) const;
- const Glib::ustring & getCurrentValue(const Glib::ustring & id) const;
- const Glib::ustring & getCurrentValue(unsigned int col) const;
+ VariableType getCurrentValue(const Glib::ustring & id) const;
+ VariableType getCurrentValue(unsigned int col) const;
bool isNull(unsigned int col) const;
bool isNull(const Glib::ustring & id) const;