diff options
Diffstat (limited to 'common/store.cpp')
-rw-r--r-- | common/store.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/store.cpp b/common/store.cpp index 2fa62d6..a2204fc 100644 --- a/common/store.cpp +++ b/common/store.cpp | |||
@@ -22,7 +22,6 @@ | |||
22 | 22 | ||
23 | #include <QTime> | 23 | #include <QTime> |
24 | #include <QAbstractItemModel> | 24 | #include <QAbstractItemModel> |
25 | #include <QUuid> | ||
26 | #include <functional> | 25 | #include <functional> |
27 | #include <memory> | 26 | #include <memory> |
28 | 27 | ||
@@ -35,6 +34,7 @@ | |||
35 | #include "modelresult.h" | 34 | #include "modelresult.h" |
36 | #include "storage.h" | 35 | #include "storage.h" |
37 | #include "log.h" | 36 | #include "log.h" |
37 | #include "utils.h" | ||
38 | 38 | ||
39 | #define ASSERT_ENUMS_MATCH(A, B) Q_STATIC_ASSERT_X(static_cast<int>(A) == static_cast<int>(B), "The enum values must match"); | 39 | #define ASSERT_ENUMS_MATCH(A, B) Q_STATIC_ASSERT_X(static_cast<int>(A) == static_cast<int>(B), "The enum values must match"); |
40 | 40 | ||
@@ -73,7 +73,7 @@ QString Store::storageLocation() | |||
73 | 73 | ||
74 | QString Store::getTemporaryFilePath() | 74 | QString Store::getTemporaryFilePath() |
75 | { | 75 | { |
76 | return Sink::temporaryFileLocation() + "/" + QUuid::createUuid().toString(); | 76 | return Sink::temporaryFileLocation() + "/" + createUuid(); |
77 | } | 77 | } |
78 | 78 | ||
79 | 79 | ||