diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2015-10-09 10:30:51 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2015-10-10 10:40:01 +0200 |
commit | 4f1ec5deaf3205e4d71dcb0ff35a29cfbb2c8ec1 (patch) | |
tree | b34e8cc4dc3857b3a3a4c5913e3989e07b81044e /common/resultset.h | |
parent | 2450b46d6aa902f5d5a5094b493f1da4d98798ba (diff) | |
download | sink-4f1ec5deaf3205e4d71dcb0ff35a29cfbb2c8ec1.tar.gz sink-4f1ec5deaf3205e4d71dcb0ff35a29cfbb2c8ec1.zip |
A null value means the generator has nothing to generate anymore.
Diffstat (limited to 'common/resultset.h')
-rw-r--r-- | common/resultset.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/common/resultset.h b/common/resultset.h index a888177..746b94b 100644 --- a/common/resultset.h +++ b/common/resultset.h | |||
@@ -70,6 +70,9 @@ class ResultSet { | |||
70 | } | 70 | } |
71 | return mIt != mResultSet.constEnd(); | 71 | return mIt != mResultSet.constEnd(); |
72 | } | 72 | } |
73 | if (!mCurrentValue.isNull()) { | ||
74 | return true; | ||
75 | } | ||
73 | return false; | 76 | return false; |
74 | } | 77 | } |
75 | 78 | ||