diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-06-16 19:11:37 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-11-08 23:20:03 +0100 |
commit | e1de322ed3911ebcef6e3bb9796ed15c8be27f4b (patch) | |
tree | db862e9c5439375c75340a31642dc61d0663851d /src/Common/Dlgcode.c | |
parent | b6dc9e9e159dd2cc9c328e888bbe9f970594a2f4 (diff) | |
download | VeraCrypt-e1de322ed3911ebcef6e3bb9796ed15c8be27f4b.tar.gz VeraCrypt-e1de322ed3911ebcef6e3bb9796ed15c8be27f4b.zip |
Replace 'TRUE' by 'VERA' in some GUI constants and comments
Diffstat (limited to 'src/Common/Dlgcode.c')
-rw-r--r-- | src/Common/Dlgcode.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Common/Dlgcode.c b/src/Common/Dlgcode.c index 71293bcd..cadab148 100644 --- a/src/Common/Dlgcode.c +++ b/src/Common/Dlgcode.c @@ -3984,7 +3984,7 @@ static BOOL CALLBACK LocalizeDialogEnum( HWND hwnd, LPARAM font) void LocalizeDialog (HWND hwnd, char *stringId)
{
LastDialogId = stringId;
- SetWindowLongPtr (hwnd, GWLP_USERDATA, (LONG_PTR) 'TRUE');
+ SetWindowLongPtr (hwnd, GWLP_USERDATA, (LONG_PTR) 'VERA');
SendMessage (hwnd, WM_SETFONT, (WPARAM) hUserFont, 0);
if (stringId == NULL)
@@ -8370,7 +8370,7 @@ void HandleDriveNotReadyError () BOOL CALLBACK CloseTCWindowsEnum (HWND hwnd, LPARAM lParam)
{
- if (GetWindowLongPtr (hwnd, GWLP_USERDATA) == (LONG_PTR) 'TRUE')
+ if (GetWindowLongPtr (hwnd, GWLP_USERDATA) == (LONG_PTR) 'VERA')
{
char name[1024] = { 0 };
GetWindowText (hwnd, name, sizeof (name) - 1);
@@ -8395,7 +8395,7 @@ BOOL CALLBACK FindTCWindowEnum (HWND hwnd, LPARAM lParam) if (*(HWND *)lParam == hwnd)
return TRUE;
- if (GetWindowLongPtr (hwnd, GWLP_USERDATA) == (LONG_PTR) 'TRUE')
+ if (GetWindowLongPtr (hwnd, GWLP_USERDATA) == (LONG_PTR) 'VERA')
{
char name[32] = { 0 };
GetWindowText (hwnd, name, sizeof (name) - 1);
|