From 41a22ca4e78df752d4ce143a692310ab9e48c686 Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Sun, 22 Jun 2014 16:02:42 +0200 Subject: Change namespace from TrueCrypt to VeraCrypt. Rename method from Resources Resources::GetTrueCryptIcon to Resources::GetVeraCryptIcon. --- src/Platform/Unix/Directory.cpp | 2 +- src/Platform/Unix/File.cpp | 2 +- src/Platform/Unix/FilesystemPath.cpp | 2 +- src/Platform/Unix/Mutex.cpp | 2 +- src/Platform/Unix/Pipe.cpp | 2 +- src/Platform/Unix/Pipe.h | 2 +- src/Platform/Unix/Poller.cpp | 2 +- src/Platform/Unix/Poller.h | 2 +- src/Platform/Unix/Process.cpp | 2 +- src/Platform/Unix/Process.h | 2 +- src/Platform/Unix/SyncEvent.cpp | 2 +- src/Platform/Unix/SystemException.cpp | 2 +- src/Platform/Unix/SystemInfo.cpp | 2 +- src/Platform/Unix/SystemLog.cpp | 2 +- src/Platform/Unix/Thread.cpp | 2 +- src/Platform/Unix/Time.cpp | 2 +- 16 files changed, 16 insertions(+), 16 deletions(-) (limited to 'src/Platform/Unix') diff --git a/src/Platform/Unix/Directory.cpp b/src/Platform/Unix/Directory.cpp index 0a0088a2..163a8173 100644 --- a/src/Platform/Unix/Directory.cpp +++ b/src/Platform/Unix/Directory.cpp @@ -15,7 +15,7 @@ #include "Platform/Finally.h" #include "Platform/SystemException.h" -namespace TrueCrypt +namespace VeraCrypt { static Mutex ReadDirMutex; // readdir_r() may be unsafe on some systems diff --git a/src/Platform/Unix/File.cpp b/src/Platform/Unix/File.cpp index fd64eb2a..25475bb0 100644 --- a/src/Platform/Unix/File.cpp +++ b/src/Platform/Unix/File.cpp @@ -31,7 +31,7 @@ #include "Platform/File.h" #include "Platform/TextReader.h" -namespace TrueCrypt +namespace VeraCrypt { #if 0 # define TC_TRACE_FILE_OPERATIONS diff --git a/src/Platform/Unix/FilesystemPath.cpp b/src/Platform/Unix/FilesystemPath.cpp index ef52fe8a..66ae3dbb 100644 --- a/src/Platform/Unix/FilesystemPath.cpp +++ b/src/Platform/Unix/FilesystemPath.cpp @@ -12,7 +12,7 @@ #include #include -namespace TrueCrypt +namespace VeraCrypt { void FilesystemPath::Delete () const { diff --git a/src/Platform/Unix/Mutex.cpp b/src/Platform/Unix/Mutex.cpp index aae5d78d..336dce3e 100644 --- a/src/Platform/Unix/Mutex.cpp +++ b/src/Platform/Unix/Mutex.cpp @@ -10,7 +10,7 @@ #include "Platform/Mutex.h" #include "Platform/SystemException.h" -namespace TrueCrypt +namespace VeraCrypt { Mutex::Mutex () { diff --git a/src/Platform/Unix/Pipe.cpp b/src/Platform/Unix/Pipe.cpp index d3465408..76d784b3 100644 --- a/src/Platform/Unix/Pipe.cpp +++ b/src/Platform/Unix/Pipe.cpp @@ -10,7 +10,7 @@ #include "Pipe.h" #include "Platform/SystemException.h" -namespace TrueCrypt +namespace VeraCrypt { Pipe::Pipe () { diff --git a/src/Platform/Unix/Pipe.h b/src/Platform/Unix/Pipe.h index 9aa5bf9e..198d3240 100644 --- a/src/Platform/Unix/Pipe.h +++ b/src/Platform/Unix/Pipe.h @@ -11,7 +11,7 @@ #include "Platform/PlatformBase.h" -namespace TrueCrypt +namespace VeraCrypt { class Pipe { diff --git a/src/Platform/Unix/Poller.cpp b/src/Platform/Unix/Poller.cpp index 3950eab0..3e823633 100644 --- a/src/Platform/Unix/Poller.cpp +++ b/src/Platform/Unix/Poller.cpp @@ -11,7 +11,7 @@ #include "Poller.h" #include "Platform/SystemException.h" -namespace TrueCrypt +namespace VeraCrypt { Poller::Poller (int fileDescriptor1, int fileDescriptor2, int fileDescriptor3, int fileDescriptor4) { diff --git a/src/Platform/Unix/Poller.h b/src/Platform/Unix/Poller.h index 131e469f..445e9280 100644 --- a/src/Platform/Unix/Poller.h +++ b/src/Platform/Unix/Poller.h @@ -11,7 +11,7 @@ #include "Platform/PlatformBase.h" -namespace TrueCrypt +namespace VeraCrypt { class Poller { diff --git a/src/Platform/Unix/Process.cpp b/src/Platform/Unix/Process.cpp index d99dff87..c82461ea 100644 --- a/src/Platform/Unix/Process.cpp +++ b/src/Platform/Unix/Process.cpp @@ -21,7 +21,7 @@ #include "Platform/Unix/Pipe.h" #include "Platform/Unix/Poller.h" -namespace TrueCrypt +namespace VeraCrypt { string Process::Execute (const string &processName, const list &arguments, int timeOut, ProcessExecFunctor *execFunctor, const Buffer *inputData) { diff --git a/src/Platform/Unix/Process.h b/src/Platform/Unix/Process.h index dd878ddd..77d4d4e0 100644 --- a/src/Platform/Unix/Process.h +++ b/src/Platform/Unix/Process.h @@ -13,7 +13,7 @@ #include "Platform/Buffer.h" #include "Platform/Functor.h" -namespace TrueCrypt +namespace VeraCrypt { struct ProcessExecFunctor { diff --git a/src/Platform/Unix/SyncEvent.cpp b/src/Platform/Unix/SyncEvent.cpp index fbf8300f..d58240e8 100644 --- a/src/Platform/Unix/SyncEvent.cpp +++ b/src/Platform/Unix/SyncEvent.cpp @@ -10,7 +10,7 @@ #include "Platform/SyncEvent.h" #include "Platform/SystemException.h" -namespace TrueCrypt +namespace VeraCrypt { SyncEvent::SyncEvent () { diff --git a/src/Platform/Unix/SystemException.cpp b/src/Platform/Unix/SystemException.cpp index b29c9b50..7348914e 100644 --- a/src/Platform/Unix/SystemException.cpp +++ b/src/Platform/Unix/SystemException.cpp @@ -12,7 +12,7 @@ #include "Platform/SystemException.h" #include "Platform/StringConverter.h" -namespace TrueCrypt +namespace VeraCrypt { SystemException::SystemException () : ErrorCode (errno) diff --git a/src/Platform/Unix/SystemInfo.cpp b/src/Platform/Unix/SystemInfo.cpp index d0ea6e61..41f6144d 100644 --- a/src/Platform/Unix/SystemInfo.cpp +++ b/src/Platform/Unix/SystemInfo.cpp @@ -10,7 +10,7 @@ #include "Platform/SystemInfo.h" #include -namespace TrueCrypt +namespace VeraCrypt { wstring SystemInfo::GetPlatformName () { diff --git a/src/Platform/Unix/SystemLog.cpp b/src/Platform/Unix/SystemLog.cpp index ee0e990d..e5988122 100644 --- a/src/Platform/Unix/SystemLog.cpp +++ b/src/Platform/Unix/SystemLog.cpp @@ -9,7 +9,7 @@ #include #include "Platform/SystemLog.h" -namespace TrueCrypt +namespace VeraCrypt { void SystemLog::WriteDebug (const string &debugMessage) { diff --git a/src/Platform/Unix/Thread.cpp b/src/Platform/Unix/Thread.cpp index 7afe6832..c2167432 100644 --- a/src/Platform/Unix/Thread.cpp +++ b/src/Platform/Unix/Thread.cpp @@ -12,7 +12,7 @@ #include "Platform/Thread.h" #include "Platform/SystemLog.h" -namespace TrueCrypt +namespace VeraCrypt { void Thread::Join () const { diff --git a/src/Platform/Unix/Time.cpp b/src/Platform/Unix/Time.cpp index 01313d53..d4720c6c 100644 --- a/src/Platform/Unix/Time.cpp +++ b/src/Platform/Unix/Time.cpp @@ -10,7 +10,7 @@ #include #include -namespace TrueCrypt +namespace VeraCrypt { uint64 Time::GetCurrent () { -- cgit v1.2.3