diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-02-09 15:17:54 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-02-13 19:42:38 +0100 |
commit | a372d9cc6c950beb401aef9005f97faeaf95b804 (patch) | |
tree | b5ee62d5c554cf613c3bbb720bf2ee49b41d9026 /common/query.h | |
parent | 516d38bd7bca5562ebb7b21b96a5dd62152ee52e (diff) | |
download | sink-a372d9cc6c950beb401aef9005f97faeaf95b804.tar.gz sink-a372d9cc6c950beb401aef9005f97faeaf95b804.zip |
Fixed query flags.
Diffstat (limited to 'common/query.h')
-rw-r--r-- | common/query.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/common/query.h b/common/query.h index 50e93de..8e9050d 100644 --- a/common/query.h +++ b/common/query.h | |||
@@ -296,10 +296,11 @@ class SINK_EXPORT Query : public QueryBase | |||
296 | public: | 296 | public: |
297 | enum Flag | 297 | enum Flag |
298 | { | 298 | { |
299 | NoFlags = 0, | ||
299 | /** Leave the query running and continuously update the result set. */ | 300 | /** Leave the query running and continuously update the result set. */ |
300 | LiveQuery, | 301 | LiveQuery = 1, |
301 | /** Run the query synchronously. */ | 302 | /** Run the query synchronously. */ |
302 | SynchronousQuery | 303 | SynchronousQuery = 2 |
303 | }; | 304 | }; |
304 | Q_DECLARE_FLAGS(Flags, Flag) | 305 | Q_DECLARE_FLAGS(Flags, Flag) |
305 | 306 | ||