diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-01-03 00:27:31 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-01-03 00:29:02 +0100 |
commit | 8f5fd67ff3ca2e68bc97e74ce6ae91931c92775f (patch) | |
tree | d237f3eb2d644219a34006e74d2917a5e48a556d /src/Setup | |
parent | ad9b40d5991688b60f446c4bc44537668df5dbca (diff) | |
download | VeraCrypt-8f5fd67ff3ca2e68bc97e74ce6ae91931c92775f.tar.gz VeraCrypt-8f5fd67ff3ca2e68bc97e74ce6ae91931c92775f.zip |
Windows: solve XP issue where the installer has missing/blacked out text boxes.
Diffstat (limited to 'src/Setup')
-rw-r--r-- | src/Setup/Wizard.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/Setup/Wizard.c b/src/Setup/Wizard.c index c6cb5468..02b8e8e1 100644 --- a/src/Setup/Wizard.c +++ b/src/Setup/Wizard.c @@ -741,18 +741,6 @@ BOOL CALLBACK PageDialogProc (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPa }
return 0;
-
- case WM_CTLCOLORSTATIC:
-
- /* This maintains the background under the transparent-backround texts */
-
- SetBkMode ((HDC) wParam, TRANSPARENT);
- return ((LONG) (HBRUSH) (GetStockObject (NULL_BRUSH)));
-
-
- case WM_ERASEBKGND:
-
- return 0;
}
return 0;
|