Change namespace from TrueCrypt to VeraCrypt. Rename method from Resources Resources::GetTrueCryptIcon to Resources::GetVeraCryptIcon.

This commit is contained in:
Mounir IDRASSI 2014-06-22 16:02:42 +02:00
parent 17823cb58c
commit 41a22ca4e7
239 changed files with 246 additions and 246 deletions

View File

@ -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)
{

View File

@ -32,7 +32,7 @@
#include "Mount/MainCom.h"
#endif
namespace TrueCrypt
namespace VeraCrypt
{
#if !defined (SETUP)

View File

@ -17,7 +17,7 @@
using namespace std;
namespace TrueCrypt
namespace VeraCrypt
{
class File
{

View File

@ -61,7 +61,7 @@
#include "Setup/Setup.h"
#endif
using namespace TrueCrypt;
using namespace VeraCrypt;
LONG DriverVersion;

View File

@ -12,7 +12,7 @@
#include "Platform/PlatformBase.h"
#include "Dlgcode.h"
namespace TrueCrypt
namespace VeraCrypt
{
struct Exception
{

View File

@ -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

View File

@ -30,7 +30,7 @@
using namespace std;
namespace TrueCrypt
namespace VeraCrypt
{
SecurityTokenKeyfile::SecurityTokenKeyfile (const SecurityTokenKeyfilePath &path)
{

View File

@ -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
{

View File

@ -11,7 +11,7 @@
#include "CoreBase.h"
namespace TrueCrypt
namespace VeraCrypt
{
extern auto_ptr <CoreBase> Core;
extern auto_ptr <CoreBase> CoreDirect;

View File

@ -12,7 +12,7 @@
#include "RandomNumberGenerator.h"
#include "Volume/Volume.h"
namespace TrueCrypt
namespace VeraCrypt
{
CoreBase::CoreBase ()
: DeviceChangeInProgress (false)

View File

@ -21,7 +21,7 @@
#include "HostDevice.h"
#include "MountOptions.h"
namespace TrueCrypt
namespace VeraCrypt
{
class CoreBase
{

View File

@ -9,7 +9,7 @@
#include "CoreException.h"
#include "Platform/SerializerFactory.h"
namespace TrueCrypt
namespace VeraCrypt
{
void ElevationFailed::Deserialize (shared_ptr <Stream> stream)
{

View File

@ -11,7 +11,7 @@
#include "Platform/Platform.h"
namespace TrueCrypt
namespace VeraCrypt
{
struct ElevationFailed : public ExecutedProcessFailed
{

View File

@ -15,7 +15,7 @@
#include "FatFormatter.h"
#include "RandomNumberGenerator.h"
namespace TrueCrypt
namespace VeraCrypt
{
struct fatparams
{

View File

@ -11,7 +11,7 @@
#include "Platform/Platform.h"
namespace TrueCrypt
namespace VeraCrypt
{
class FatFormatter
{

View File

@ -9,7 +9,7 @@
#include "HostDevice.h"
#include "Platform/SerializerFactory.h"
namespace TrueCrypt
namespace VeraCrypt
{
void HostDevice::Deserialize (shared_ptr <Stream> stream)
{

View File

@ -12,7 +12,7 @@
#include "Platform/Platform.h"
#include "Platform/Serializable.h"
namespace TrueCrypt
namespace VeraCrypt
{
struct HostDevice;
typedef list < shared_ptr <HostDevice> > HostDeviceList;

View File

@ -10,7 +10,7 @@
#include "Platform/MemoryStream.h"
#include "Platform/SerializerFactory.h"
namespace TrueCrypt
namespace VeraCrypt
{
void MountOptions::CopyFrom (const MountOptions &other)
{

View File

@ -15,7 +15,7 @@
#include "Volume/VolumeSlot.h"
#include "Volume/VolumePassword.h"
namespace TrueCrypt
namespace VeraCrypt
{
struct MountOptions : public Serializable
{

View File

@ -15,7 +15,7 @@
#include "RandomNumberGenerator.h"
#include "Volume/Crc32.h"
namespace TrueCrypt
namespace VeraCrypt
{
void RandomNumberGenerator::AddSystemDataToPool (bool fast)
{

View File

@ -13,7 +13,7 @@
#include "Volume/Hash.h"
#include "Common/Random.h"
namespace TrueCrypt
namespace VeraCrypt
{
class RandomNumberGenerator
{

View File

@ -20,7 +20,7 @@
#include "CoreServiceRequest.h"
#include "CoreServiceResponse.h"
namespace TrueCrypt
namespace VeraCrypt
{
template <class T>
auto_ptr <T> CoreService::GetResponse ()

View File

@ -14,7 +14,7 @@
#include "Platform/Unix/Pipe.h"
#include "Core/Core.h"
namespace TrueCrypt
namespace VeraCrypt
{
// This service facilitates process forking and elevation of user privileges
class CoreService

View File

@ -12,7 +12,7 @@
#include "CoreService.h"
#include "Volume/VolumePasswordCache.h"
namespace TrueCrypt
namespace VeraCrypt
{
template <class T>
class CoreServiceProxy : public T

View File

@ -10,7 +10,7 @@
#include "CoreServiceRequest.h"
#include "Platform/SerializerFactory.h"
namespace TrueCrypt
namespace VeraCrypt
{
void CoreServiceRequest::Deserialize (shared_ptr <Stream> stream)
{

View File

@ -12,7 +12,7 @@
#include "Platform/Serializable.h"
#include "Core/Core.h"
namespace TrueCrypt
namespace VeraCrypt
{
struct CoreServiceRequest : public Serializable
{

View File

@ -9,7 +9,7 @@
#include "CoreServiceResponse.h"
#include "Platform/SerializerFactory.h"
namespace TrueCrypt
namespace VeraCrypt
{
// CheckFilesystemResponse
void CheckFilesystemResponse::Deserialize (shared_ptr <Stream> stream)

View File

@ -12,7 +12,7 @@
#include "Platform/Serializable.h"
#include "Core/Core.h"
namespace TrueCrypt
namespace VeraCrypt
{
struct CoreServiceResponse : public Serializable
{

View File

@ -18,7 +18,7 @@
#include "Driver/Fuse/FuseService.h"
#include "Volume/VolumePasswordCache.h"
namespace TrueCrypt
namespace VeraCrypt
{
CoreUnix::CoreUnix ()
{

View File

@ -14,7 +14,7 @@
#include "Core/CoreBase.h"
#include "Core/Unix/MountedFilesystem.h"
namespace TrueCrypt
namespace VeraCrypt
{
class CoreUnix : public CoreBase
{

View File

@ -16,7 +16,7 @@
#include "CoreFreeBSD.h"
#include "Core/Unix/CoreServiceProxy.h"
namespace TrueCrypt
namespace VeraCrypt
{
CoreFreeBSD::CoreFreeBSD ()
{

View File

@ -12,7 +12,7 @@
#include "System.h"
#include "Core/Unix/CoreUnix.h"
namespace TrueCrypt
namespace VeraCrypt
{
class CoreFreeBSD : public CoreUnix
{

View File

@ -22,7 +22,7 @@
#include "Driver/Fuse/FuseService.h"
#include "Core/Unix/CoreServiceProxy.h"
namespace TrueCrypt
namespace VeraCrypt
{
CoreLinux::CoreLinux ()
{

View File

@ -12,7 +12,7 @@
#include "System.h"
#include "Core/Unix/CoreUnix.h"
namespace TrueCrypt
namespace VeraCrypt
{
class CoreLinux : public CoreUnix
{

View File

@ -19,7 +19,7 @@
#include "Driver/Fuse/FuseService.h"
#include "Core/Unix/CoreServiceProxy.h"
namespace TrueCrypt
namespace VeraCrypt
{
CoreMacOSX::CoreMacOSX ()
{

View File

@ -12,7 +12,7 @@
#include "System.h"
#include "Core/Unix/FreeBSD/CoreFreeBSD.h"
namespace TrueCrypt
namespace VeraCrypt
{
class CoreMacOSX : public CoreFreeBSD
{

View File

@ -11,7 +11,7 @@
#include "Platform/Platform.h"
namespace TrueCrypt
namespace VeraCrypt
{
struct MountedFilesystem
{

View File

@ -15,7 +15,7 @@
#include "CoreSolaris.h"
#include "Core/Unix/CoreServiceProxy.h"
namespace TrueCrypt
namespace VeraCrypt
{
CoreSolaris::CoreSolaris ()
{

View File

@ -12,7 +12,7 @@
#include "System.h"
#include "Core/Unix/CoreUnix.h"
namespace TrueCrypt
namespace VeraCrypt
{
class CoreSolaris : public CoreUnix
{

View File

@ -19,7 +19,7 @@
#include "VolumeCreator.h"
#include "FatFormatter.h"
namespace TrueCrypt
namespace VeraCrypt
{
VolumeCreator::VolumeCreator ()
: SizeDone (0)

View File

@ -13,7 +13,7 @@
#include "Volume/Volume.h"
#include "RandomNumberGenerator.h"
namespace TrueCrypt
namespace VeraCrypt
{
struct VolumeCreationOptions

View File

@ -30,7 +30,7 @@
#include "Volume/EncryptionThreadPool.h"
#include "Core/Core.h"
namespace TrueCrypt
namespace VeraCrypt
{
static int fuse_service_access (const char *path, int mask)
{

View File

@ -15,7 +15,7 @@
#include "Volume/VolumeInfo.h"
#include "Volume/Volume.h"
namespace TrueCrypt
namespace VeraCrypt
{
class FuseService

View File

@ -20,7 +20,7 @@
#include "FormatCom_h.h"
#include "FormatCom_i.c"
using namespace TrueCrypt;
using namespace VeraCrypt;
static volatile LONG ObjectCount = 0;

View File

@ -35,7 +35,7 @@ IMPORTANT: Due to this issue, functions in this file must not directly interact
#include "InPlace.h"
using namespace std;
using namespace TrueCrypt;
using namespace VeraCrypt;
#define TC_MAX_NONSYS_INPLACE_ENC_WORK_CHUNK_SIZE (2048 * BYTES_PER_KB)
#define TC_INITIAL_NTFS_CONCEAL_PORTION_SIZE (2 * TC_MAX_VOLUME_SECTOR_SIZE)

View File

@ -48,7 +48,7 @@
#include "Wipe.h"
#include "Xml.h"
using namespace TrueCrypt;
using namespace VeraCrypt;
enum wizard_pages
{

View File

@ -16,7 +16,7 @@
#endif
#include "TextUserInterface.h"
namespace TrueCrypt
namespace VeraCrypt
{
wxApp* Application::CreateConsoleApp ()
{

View File

@ -13,7 +13,7 @@
#include "UserInterface.h"
#include "UserInterfaceType.h"
namespace TrueCrypt
namespace VeraCrypt
{
class Application
{

View File

@ -15,7 +15,7 @@
#include "LanguageStrings.h"
#include "UserInterfaceException.h"
namespace TrueCrypt
namespace VeraCrypt
{
CommandLineInterface::CommandLineInterface (wxCmdLineParser &parser, UserInterfaceType::Enum interfaceType) :
ArgCommand (CommandId::None),

View File

@ -17,7 +17,7 @@
#include "UserPreferences.h"
#include "UserInterfaceType.h"
namespace TrueCrypt
namespace VeraCrypt
{
struct CommandId
{

View File

@ -31,7 +31,7 @@
#include "FatalErrorHandler.h"
namespace TrueCrypt
namespace VeraCrypt
{
static terminate_handler DefaultTerminateHandler;

View File

@ -11,7 +11,7 @@
#include "System.h"
namespace TrueCrypt
namespace VeraCrypt
{
class FatalErrorHandler
{

View File

@ -11,7 +11,7 @@
#include "FavoriteVolume.h"
#include "Xml.h"
namespace TrueCrypt
namespace VeraCrypt
{
FavoriteVolumeList FavoriteVolume::LoadList ()
{

View File

@ -12,7 +12,7 @@
#include "System.h"
#include "Main.h"
namespace TrueCrypt
namespace VeraCrypt
{
struct FavoriteVolume;
typedef list < shared_ptr <FavoriteVolume> > FavoriteVolumeList;

View File

@ -13,7 +13,7 @@
#include "Main/Resources.h"
#include "AboutDialog.h"
namespace TrueCrypt
namespace VeraCrypt
{
AboutDialog::AboutDialog (wxWindow* parent) : AboutDialogBase (parent)
{

View File

@ -11,7 +11,7 @@
#include "Forms.h"
namespace TrueCrypt
namespace VeraCrypt
{
class AboutDialog : public AboutDialogBase
{

View File

@ -11,7 +11,7 @@
#include "Main/GraphicUserInterface.h"
#include "BenchmarkDialog.h"
namespace TrueCrypt
namespace VeraCrypt
{
BenchmarkDialog::BenchmarkDialog (wxWindow *parent)
: BenchmarkDialogBase (parent)

View File

@ -12,7 +12,7 @@
#include "Forms.h"
#include "Main/Main.h"
namespace TrueCrypt
namespace VeraCrypt
{
class BenchmarkDialog : public BenchmarkDialogBase
{

View File

@ -11,7 +11,7 @@
#include "Main/GraphicUserInterface.h"
#include "ChangePasswordDialog.h"
namespace TrueCrypt
namespace VeraCrypt
{
ChangePasswordDialog::ChangePasswordDialog (wxWindow* parent, shared_ptr <VolumePath> volumePath, Mode::Enum mode, shared_ptr <VolumePassword> password, shared_ptr <KeyfileList> keyfiles, shared_ptr <VolumePassword> newPassword, shared_ptr <KeyfileList> newKeyfiles)
: ChangePasswordDialogBase (parent), DialogMode (mode), Path (volumePath)

View File

@ -13,7 +13,7 @@
#include "Main/Main.h"
#include "VolumePasswordPanel.h"
namespace TrueCrypt
namespace VeraCrypt
{
class ChangePasswordDialog : public ChangePasswordDialogBase
{

View File

@ -11,7 +11,7 @@
#include "Main/Resources.h"
#include "DeviceSelectionDialog.h"
namespace TrueCrypt
namespace VeraCrypt
{
DeviceSelectionDialog::DeviceSelectionDialog (wxWindow* parent)
: DeviceSelectionDialogBase (parent)

View File

@ -12,7 +12,7 @@
#include "Forms.h"
#include "Main/Main.h"
namespace TrueCrypt
namespace VeraCrypt
{
class DeviceSelectionDialog : public DeviceSelectionDialogBase
{

View File

@ -14,7 +14,7 @@
#include "EncryptionOptionsWizardPage.h"
#include "EncryptionTestDialog.h"
namespace TrueCrypt
namespace VeraCrypt
{
EncryptionOptionsWizardPage::EncryptionOptionsWizardPage (wxPanel* parent)
: EncryptionOptionsWizardPageBase (parent)

View File

@ -11,7 +11,7 @@
#include "Forms.h"
namespace TrueCrypt
namespace VeraCrypt
{
class EncryptionOptionsWizardPage : public EncryptionOptionsWizardPageBase
{

View File

@ -12,7 +12,7 @@
#include "Main/GraphicUserInterface.h"
#include "EncryptionTestDialog.h"
namespace TrueCrypt
namespace VeraCrypt
{
EncryptionTestDialog::EncryptionTestDialog (wxWindow* parent)
: EncryptionTestDialogBase (parent)

View File

@ -12,7 +12,7 @@
#include "Forms.h"
#include "Main/Main.h"
namespace TrueCrypt
namespace VeraCrypt
{
class EncryptionTestDialog : public EncryptionTestDialogBase
{

View File

@ -10,7 +10,7 @@
#include "Main/GraphicUserInterface.h"
#include "FavoriteVolumesDialog.h"
namespace TrueCrypt
namespace VeraCrypt
{
FavoriteVolumesDialog::FavoriteVolumesDialog (wxWindow* parent, const FavoriteVolumeList &favorites, size_t newItemCount)
: FavoriteVolumesDialogBase (parent), Favorites (favorites)

View File

@ -13,7 +13,7 @@
#include "Main/Main.h"
#include "Main/FavoriteVolume.h"
namespace TrueCrypt
namespace VeraCrypt
{
class FavoriteVolumesDialog : public FavoriteVolumesDialogBase
{

View File

@ -9,7 +9,7 @@
#include "System.h"
#include "InfoWizardPage.h"
namespace TrueCrypt
namespace VeraCrypt
{
InfoWizardPage::InfoWizardPage (wxPanel *parent, const wxString &actionButtonText, shared_ptr <Functor> actionFunctor)
: InfoWizardPageBase (parent)

View File

@ -11,7 +11,7 @@
#include "Forms.h"
namespace TrueCrypt
namespace VeraCrypt
{
class InfoWizardPage : public InfoWizardPageBase
{

View File

@ -11,7 +11,7 @@
#include "Volume/Hash.h"
#include "KeyfileGeneratorDialog.h"
namespace TrueCrypt
namespace VeraCrypt
{
KeyfileGeneratorDialog::KeyfileGeneratorDialog (wxWindow* parent) : KeyfileGeneratorDialogBase (parent)
{

View File

@ -12,7 +12,7 @@
#include "Forms.h"
#include "Main/Main.h"
namespace TrueCrypt
namespace VeraCrypt
{
class KeyfileGeneratorDialog : public KeyfileGeneratorDialogBase
{

View File

@ -10,7 +10,7 @@
#include "Main/GraphicUserInterface.h"
#include "KeyfilesDialog.h"
namespace TrueCrypt
namespace VeraCrypt
{
KeyfilesDialog::KeyfilesDialog (wxWindow* parent, shared_ptr <KeyfileList> keyfiles)
: KeyfilesDialogBase (parent), Keyfiles (keyfiles)

View File

@ -13,7 +13,7 @@
#include "Main/Main.h"
#include "KeyfilesPanel.h"
namespace TrueCrypt
namespace VeraCrypt
{
class KeyfilesDialog : public KeyfilesDialogBase
{

View File

@ -11,7 +11,7 @@
#include "KeyfilesPanel.h"
#include "SecurityTokenKeyfilesDialog.h"
namespace TrueCrypt
namespace VeraCrypt
{
KeyfilesPanel::KeyfilesPanel (wxWindow* parent, shared_ptr <KeyfileList> keyfiles)
: KeyfilesPanelBase (parent)

View File

@ -12,7 +12,7 @@
#include "Forms.h"
#include "Main/Main.h"
namespace TrueCrypt
namespace VeraCrypt
{
class KeyfilesPanel : public KeyfilesPanelBase
{

View File

@ -11,7 +11,7 @@
#include "Main/GraphicUserInterface.h"
#include "Main/Resources.h"
namespace TrueCrypt
namespace VeraCrypt
{
LegalNoticesDialog::LegalNoticesDialog (wxWindow* parent) : LegalNoticesDialogBase (parent)
{

View File

@ -11,7 +11,7 @@
#include "Forms.h"
namespace TrueCrypt
namespace VeraCrypt
{
class LegalNoticesDialog : public LegalNoticesDialogBase
{

View File

@ -34,7 +34,7 @@
#include "VolumeCreationWizard.h"
#include "VolumePropertiesDialog.h"
namespace TrueCrypt
namespace VeraCrypt
{
MainFrame::MainFrame (wxWindow* parent) : MainFrameBase (parent),
ListItemRightClickEventPending (false),
@ -46,7 +46,7 @@ namespace TrueCrypt
SetName (Application::GetName());
SetTitle (Application::GetName());
SetIcon (Resources::GetTrueCryptIcon());
SetIcon (Resources::GetVeraCryptIcon());
#if defined(TC_UNIX) && !defined(TC_MACOSX)
try
@ -1420,7 +1420,7 @@ namespace TrueCrypt
else if (show && !mTaskBarIcon->IsIconInstalled())
{
#ifndef TC_MACOSX
mTaskBarIcon->SetIcon (Resources::GetTrueCryptIcon(), L"VeraCrypt");
mTaskBarIcon->SetIcon (Resources::GetVeraCryptIcon(), L"VeraCrypt");
#endif
}
}

View File

@ -12,7 +12,7 @@
#include "Forms.h"
#include "ChangePasswordDialog.h"
namespace TrueCrypt
namespace VeraCrypt
{
struct FavoriteVolume;

View File

@ -11,7 +11,7 @@
#include "Main/GraphicUserInterface.h"
#include "MountOptionsDialog.h"
namespace TrueCrypt
namespace VeraCrypt
{
MountOptionsDialog::MountOptionsDialog (wxWindow *parent, MountOptions &options, const wxString &title, bool disableMountOptions)
: MountOptionsDialogBase (parent, wxID_ANY, wxString()

View File

@ -13,7 +13,7 @@
#include "Main/Main.h"
#include "VolumePasswordPanel.h"
namespace TrueCrypt
namespace VeraCrypt
{
class MountOptionsDialog : public MountOptionsDialogBase
{

View File

@ -10,7 +10,7 @@
#include "Main/GraphicUserInterface.h"
#include "NewSecurityTokenKeyfileDialog.h"
namespace TrueCrypt
namespace VeraCrypt
{
NewSecurityTokenKeyfileDialog::NewSecurityTokenKeyfileDialog (wxWindow* parent, const wstring &keyfileName) : NewSecurityTokenKeyfileDialogBase (parent)
{

View File

@ -12,7 +12,7 @@
#include "Forms.h"
#include "Common/SecurityToken.h"
namespace TrueCrypt
namespace VeraCrypt
{
class NewSecurityTokenKeyfileDialog : public NewSecurityTokenKeyfileDialogBase
{

View File

@ -18,7 +18,7 @@
#include "Volume/Cipher.h"
#include "PreferencesDialog.h"
namespace TrueCrypt
namespace VeraCrypt
{
PreferencesDialog::PreferencesDialog (wxWindow* parent)
: PreferencesDialogBase (parent),

View File

@ -13,7 +13,7 @@
#include "Main/Main.h"
#include "KeyfilesPanel.h"
namespace TrueCrypt
namespace VeraCrypt
{
class PreferencesDialog : public PreferencesDialogBase
{

View File

@ -10,7 +10,7 @@
#include "Main/GraphicUserInterface.h"
#include "ProgressWizardPage.h"
namespace TrueCrypt
namespace VeraCrypt
{
ProgressWizardPage::ProgressWizardPage (wxPanel* parent, bool enableAbort)
: ProgressWizardPageBase (parent),

View File

@ -11,7 +11,7 @@
#include "Forms.h"
namespace TrueCrypt
namespace VeraCrypt
{
class ProgressWizardPage : public ProgressWizardPageBase
{

View File

@ -11,7 +11,7 @@
#include "Volume/Hash.h"
#include "RandomPoolEnrichmentDialog.h"
namespace TrueCrypt
namespace VeraCrypt
{
RandomPoolEnrichmentDialog::RandomPoolEnrichmentDialog (wxWindow* parent) : RandomPoolEnrichmentDialogBase (parent)
{

View File

@ -12,7 +12,7 @@
#include "Forms.h"
#include "Main/Main.h"
namespace TrueCrypt
namespace VeraCrypt
{
class RandomPoolEnrichmentDialog : public RandomPoolEnrichmentDialogBase
{

View File

@ -12,7 +12,7 @@
#include "NewSecurityTokenKeyfileDialog.h"
#include "SecurityTokenKeyfilesDialog.h"
namespace TrueCrypt
namespace VeraCrypt
{
SecurityTokenKeyfilesDialog::SecurityTokenKeyfilesDialog (wxWindow* parent, bool selectionMode)
: SecurityTokenKeyfilesDialogBase (parent)

View File

@ -13,7 +13,7 @@
#include "Common/SecurityToken.h"
#include "Main/Main.h"
namespace TrueCrypt
namespace VeraCrypt
{
class SecurityTokenKeyfilesDialog : public SecurityTokenKeyfilesDialogBase
{

View File

@ -10,7 +10,7 @@
#include "Main/GraphicUserInterface.h"
#include "SelectDirectoryWizardPage.h"
namespace TrueCrypt
namespace VeraCrypt
{
bool SelectDirectoryWizardPage::IsValid ()
{

View File

@ -11,7 +11,7 @@
#include "Forms.h"
namespace TrueCrypt
namespace VeraCrypt
{
class SelectDirectoryWizardPage : public SelectDirectoryWizardPageBase
{

View File

@ -11,7 +11,7 @@
#include "Forms.h"
namespace TrueCrypt
namespace VeraCrypt
{
template <class ChoiceType>
class SingleChoiceWizardPage : public SingleChoiceWizardPageBase

View File

@ -10,7 +10,7 @@
#include "Main/GraphicUserInterface.h"
#include "VolumeCreationProgressWizardPage.h"
namespace TrueCrypt
namespace VeraCrypt
{
VolumeCreationProgressWizardPage::VolumeCreationProgressWizardPage (wxPanel* parent, bool displayKeyInfo)
: VolumeCreationProgressWizardPageBase (parent),

View File

@ -12,7 +12,7 @@
#include "Forms.h"
#include "Core/VolumeCreator.h"
namespace TrueCrypt
namespace VeraCrypt
{
class VolumeCreationProgressWizardPage : public VolumeCreationProgressWizardPageBase
{

View File

@ -28,7 +28,7 @@
#include "VolumePasswordWizardPage.h"
#include "VolumeSizeWizardPage.h"
namespace TrueCrypt
namespace VeraCrypt
{
VolumeCreationWizard::VolumeCreationWizard (wxWindow* parent)
: WizardFrame (parent),

View File

@ -12,7 +12,7 @@
#include "WizardFrame.h"
#include "Core/VolumeCreator.h"
namespace TrueCrypt
namespace VeraCrypt
{
class VolumeCreationWizard : public WizardFrame
{

View File

@ -10,7 +10,7 @@
#include "Main/GraphicUserInterface.h"
#include "VolumeFormatOptionsWizardPage.h"
namespace TrueCrypt
namespace VeraCrypt
{
VolumeFormatOptionsWizardPage::VolumeFormatOptionsWizardPage (wxPanel* parent, uint64 volumeSize, uint32 sectorSize, bool enableQuickFormatButton, bool disableNoneFilesystem, bool disable32bitFilesystems)
: VolumeFormatOptionsWizardPageBase (parent)

Some files were not shown because too many files have changed in this diff Show More