summaryrefslogtreecommitdiffstats
path: root/common/storage.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/storage.h')
-rw-r--r--common/storage.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/storage.h b/common/storage.h
index 2f7a2df..4b0604e 100644
--- a/common/storage.h
+++ b/common/storage.h
@@ -113,7 +113,7 @@ public:
113 bool commit(const std::function<void(const Storage::Error &error)> &errorHandler = std::function<void(const Storage::Error &error)>()); 113 bool commit(const std::function<void(const Storage::Error &error)> &errorHandler = std::function<void(const Storage::Error &error)>());
114 void abort(); 114 void abort();
115 115
116 NamedDatabase openDatabase(const QByteArray &name = QByteArray("default"), const std::function<void(const Storage::Error &error)> &errorHandler = std::function<void(const Storage::Error &error)>()) const; 116 NamedDatabase openDatabase(const QByteArray &name = QByteArray("default"), const std::function<void(const Storage::Error &error)> &errorHandler = std::function<void(const Storage::Error &error)>(), bool allowDuplicates = false) const;
117 117
118 Transaction(Transaction&& other) : d(other.d) 118 Transaction(Transaction&& other) : d(other.d)
119 { 119 {