diff options
author | Aaron Seigo <aseigo@kde.org> | 2014-12-15 19:28:05 +0100 |
---|---|---|
committer | Aaron Seigo <aseigo@kde.org> | 2014-12-15 19:28:05 +0100 |
commit | 3dd90236e7927028ff5c98635f8075189c9869c2 (patch) | |
tree | aefb7ce4e698b6c9d6993546d5e437a61d7ce4e3 /common/storage_unqlite.cpp | |
parent | cb0f5fb769380db5771ff8e0dba8d780cdc92edb (diff) | |
download | sink-3dd90236e7927028ff5c98635f8075189c9869c2.tar.gz sink-3dd90236e7927028ff5c98635f8075189c9869c2.zip |
namespace everything in libs with Akonadi2
Diffstat (limited to 'common/storage_unqlite.cpp')
-rw-r--r-- | common/storage_unqlite.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/common/storage_unqlite.cpp b/common/storage_unqlite.cpp index 67f910b..69dc288 100644 --- a/common/storage_unqlite.cpp +++ b/common/storage_unqlite.cpp | |||
@@ -13,6 +13,9 @@ extern "C" { | |||
13 | #include "unqlite/unqlite.h" | 13 | #include "unqlite/unqlite.h" |
14 | } | 14 | } |
15 | 15 | ||
16 | namespace Akonadi2 | ||
17 | { | ||
18 | |||
16 | static const char *s_unqliteDir = "/unqlite/"; | 19 | static const char *s_unqliteDir = "/unqlite/"; |
17 | 20 | ||
18 | class Storage::Private | 21 | class Storage::Private |
@@ -289,3 +292,4 @@ void Storage::removeFromDisk() const | |||
289 | QFile::remove(d->storageRoot + s_unqliteDir + d->name); | 292 | QFile::remove(d->storageRoot + s_unqliteDir + d->name); |
290 | } | 293 | } |
291 | 294 | ||
295 | } // namespace Akonadi2 | ||