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/Common | |
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/Common')
-rw-r--r-- | src/Common/BaseCom.cpp | 2 | ||||
-rw-r--r-- | src/Common/BootEncryption.cpp | 2 | ||||
-rw-r--r-- | src/Common/BootEncryption.h | 2 | ||||
-rw-r--r-- | src/Common/Dlgcode.c | 2 | ||||
-rw-r--r-- | src/Common/Exception.h | 2 | ||||
-rw-r--r-- | src/Common/Keyfiles.c | 2 | ||||
-rw-r--r-- | src/Common/SecurityToken.cpp | 2 | ||||
-rw-r--r-- | src/Common/SecurityToken.h | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/src/Common/BaseCom.cpp b/src/Common/BaseCom.cpp index 409a653d..5771daaa 100644 --- a/src/Common/BaseCom.cpp +++ b/src/Common/BaseCom.cpp @@ -15,7 +15,7 @@ #include "Dlgcode.h"
#include "Registry.h"
-using namespace TrueCrypt;
+using namespace VeraCrypt;
HRESULT CreateElevatedComObject (HWND hwnd, REFGUID guid, REFIID iid, void **ppv)
{
diff --git a/src/Common/BootEncryption.cpp b/src/Common/BootEncryption.cpp index 3f90ad0a..29df5569 100644 --- a/src/Common/BootEncryption.cpp +++ b/src/Common/BootEncryption.cpp @@ -32,7 +32,7 @@ #include "Mount/MainCom.h"
#endif
-namespace TrueCrypt
+namespace VeraCrypt
{
#if !defined (SETUP)
diff --git a/src/Common/BootEncryption.h b/src/Common/BootEncryption.h index febbdf5b..16e42e11 100644 --- a/src/Common/BootEncryption.h +++ b/src/Common/BootEncryption.h @@ -17,7 +17,7 @@ using namespace std;
-namespace TrueCrypt
+namespace VeraCrypt
{
class File
{
diff --git a/src/Common/Dlgcode.c b/src/Common/Dlgcode.c index cadab148..ad8b4890 100644 --- a/src/Common/Dlgcode.c +++ b/src/Common/Dlgcode.c @@ -61,7 +61,7 @@ #include "Setup/Setup.h"
#endif
-using namespace TrueCrypt;
+using namespace VeraCrypt;
LONG DriverVersion;
diff --git a/src/Common/Exception.h b/src/Common/Exception.h index c9985d04..5bf9395f 100644 --- a/src/Common/Exception.h +++ b/src/Common/Exception.h @@ -12,7 +12,7 @@ #include "Platform/PlatformBase.h"
#include "Dlgcode.h"
-namespace TrueCrypt
+namespace VeraCrypt
{
struct Exception
{
diff --git a/src/Common/Keyfiles.c b/src/Common/Keyfiles.c index d5ce556a..e7e55ca5 100644 --- a/src/Common/Keyfiles.c +++ b/src/Common/Keyfiles.c @@ -23,7 +23,7 @@ #include "Platform/Finally.h"
#include "Platform/ForEach.h"
-using namespace TrueCrypt;
+using namespace VeraCrypt;
#define stat _stat
#define S_IFDIR _S_IFDIR
diff --git a/src/Common/SecurityToken.cpp b/src/Common/SecurityToken.cpp index 3a961fe5..061d96fe 100644 --- a/src/Common/SecurityToken.cpp +++ b/src/Common/SecurityToken.cpp @@ -30,7 +30,7 @@ using namespace std;
-namespace TrueCrypt
+namespace VeraCrypt
{
SecurityTokenKeyfile::SecurityTokenKeyfile (const SecurityTokenKeyfilePath &path)
{
diff --git a/src/Common/SecurityToken.h b/src/Common/SecurityToken.h index 5620aa05..c83ed328 100644 --- a/src/Common/SecurityToken.h +++ b/src/Common/SecurityToken.h @@ -49,7 +49,7 @@ #define TC_SECURITY_TOKEN_KEYFILE_URL_SLOT L"slot"
#define TC_SECURITY_TOKEN_KEYFILE_URL_FILE L"file"
-namespace TrueCrypt
+namespace VeraCrypt
{
struct SecurityTokenInfo
{
|