diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-06-22 16:02:42 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-11-08 23:20:14 +0100 |
commit | 41a22ca4e78df752d4ce143a692310ab9e48c686 (patch) | |
tree | 7167af89d885e032926cb79981fd981f7b685962 /src/Platform/SharedPtr.h | |
parent | 17823cb58c5c68e5d1cf8cc6e9d92d0ce6194d8d (diff) | |
download | VeraCrypt-41a22ca4e78df752d4ce143a692310ab9e48c686.tar.gz VeraCrypt-41a22ca4e78df752d4ce143a692310ab9e48c686.zip |
Change namespace from TrueCrypt to VeraCrypt. Rename method from Resources Resources::GetTrueCryptIcon to Resources::GetVeraCryptIcon.
Diffstat (limited to 'src/Platform/SharedPtr.h')
-rw-r--r-- | src/Platform/SharedPtr.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Platform/SharedPtr.h b/src/Platform/SharedPtr.h index 3221265d..64e2909a 100644 --- a/src/Platform/SharedPtr.h +++ b/src/Platform/SharedPtr.h @@ -14,7 +14,7 @@ #ifdef nullptr
-namespace TrueCrypt
+namespace VeraCrypt
{
template <class T>
class SharedPtr
@@ -135,7 +135,7 @@ namespace TrueCrypt #ifdef shared_ptr
#undef shared_ptr
#endif
-#define shared_ptr TrueCrypt::SharedPtr
+#define shared_ptr VeraCrypt::SharedPtr
#ifdef make_shared
#undef make_shared
@@ -151,7 +151,7 @@ namespace TrueCrypt return shared_ptr <T> (new T (arg));
}
-#define make_shared TrueCrypt::make_shared
+#define make_shared VeraCrypt::make_shared
}
|