diff options
author | randomdan <randomdan@localhost> | 2010-09-21 19:51:33 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2010-09-21 19:51:33 +0000 |
commit | 1625b924e8549abc2a3c31d2a0af01ab28fd3b18 (patch) | |
tree | f1a3f83bbb0b801453e168a65d4ea6b98816bc96 /project2/fileRows.cpp | |
parent | Rewrite the whole of parameter and column binding almost from scratch (diff) | |
download | project2-1625b924e8549abc2a3c31d2a0af01ab28fd3b18.tar.bz2 project2-1625b924e8549abc2a3c31d2a0af01ab28fd3b18.tar.xz project2-1625b924e8549abc2a3c31d2a0af01ab28fd3b18.zip |
Handle null fields
Use null to hide null license details
Fix mask counter
Include change log
Diffstat (limited to 'project2/fileRows.cpp')
-rw-r--r-- | project2/fileRows.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/project2/fileRows.cpp b/project2/fileRows.cpp index 9c6a5fe..f28c96d 100644 --- a/project2/fileRows.cpp +++ b/project2/fileRows.cpp @@ -108,6 +108,12 @@ _FileRows::getCurrentValue(unsigned int col) const return *values[col]; } +bool +_FileRows::isNull(unsigned int col) const +{ + return false; +} + const Glib::ustring & _FileRows::getCurrentValue(const Glib::ustring & id) const { |