diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2015-05-31 20:17:27 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2015-05-31 20:17:27 +0200 |
commit | 69a3900feb4a0277d4e70e44256c9b37be78a2d5 (patch) | |
tree | ab199e18c49e73bb4352186843856d17fc88ec0e /common/resultset.h | |
parent | e297fb92c2c0e344d36e0aef57921f6b9b921a61 (diff) | |
download | sink-69a3900feb4a0277d4e70e44256c9b37be78a2d5.tar.gz sink-69a3900feb4a0277d4e70e44256c9b37be78a2d5.zip |
Fixed return value.
Diffstat (limited to 'common/resultset.h')
-rw-r--r-- | common/resultset.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/resultset.h b/common/resultset.h index 7d7f19a..f9b6cea 100644 --- a/common/resultset.h +++ b/common/resultset.h | |||
@@ -51,7 +51,7 @@ class ResultSet { | |||
51 | 51 | ||
52 | bool isEmpty() | 52 | bool isEmpty() |
53 | { | 53 | { |
54 | mResultSet.isEmpty(); | 54 | return mResultSet.isEmpty(); |
55 | } | 55 | } |
56 | 56 | ||
57 | private: | 57 | private: |