diff options
Diffstat (limited to 'project2/fileRows.cpp')
-rw-r--r-- | project2/fileRows.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/project2/fileRows.cpp b/project2/fileRows.cpp index 239ad6b..855136f 100644 --- a/project2/fileRows.cpp +++ b/project2/fileRows.cpp @@ -26,7 +26,7 @@ _FileRows::columnCount() const return columns.size(); } -Glib::ustring +const Glib::ustring & _FileRows::getColumnName(unsigned int col) const { return columns[col]; @@ -93,13 +93,13 @@ _FileRows::execute() const } } -Glib::ustring +const Glib::ustring & _FileRows::getCurrentValue(unsigned int col) const { return *values[col]; } -Glib::ustring +const Glib::ustring & _FileRows::getCurrentValue(const Glib::ustring & id) const { Values::const_iterator v = values.begin(); @@ -108,7 +108,7 @@ _FileRows::getCurrentValue(const Glib::ustring & id) const return **v; } } - return ""; + throw PerRowValues::FieldDoesNotExist(); } void |