diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-04-28 23:37:56 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-05-03 15:47:22 +0200 |
commit | a1f1e34789d3693f821ec20cf147e2634f981249 (patch) | |
tree | b1278013a471a82856fba2488d7487bbc5eb82af /src/Setup/Setup.rc | |
parent | eac440ae9e9d313712bef01fcd7e70ff255e0eea (diff) | |
download | VeraCrypt-a1f1e34789d3693f821ec20cf147e2634f981249.tar.gz VeraCrypt-a1f1e34789d3693f821ec20cf147e2634f981249.zip |
Windows: Modify custom window class names to less generic value in order to avoid collision with existing class names.
Diffstat (limited to 'src/Setup/Setup.rc')
-rw-r--r-- | src/Setup/Setup.rc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Setup/Setup.rc b/src/Setup/Setup.rc index cbf9243d..fa27c443 100644 --- a/src/Setup/Setup.rc +++ b/src/Setup/Setup.rc @@ -82,7 +82,7 @@ IDR_COMREG REGISTRY "ComSetup.rgs" IDD_UNINSTALL DIALOGEX 0, 0, 349, 234
STYLE DS_SETFONT | DS_SETFOREGROUND | DS_3DLOOK | DS_FIXEDSYS | DS_CENTER | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "Uninstall VeraCrypt"
-CLASS "CustomDlg"
+CLASS "VeraCryptCustomDlg"
FONT 8, "MS Shell Dlg", 0, 0, 0x0
BEGIN
LTEXT "Click Uninstall to remove VeraCrypt from this system.",IDT_UNINSTALL_DIR,8,8,334,8
@@ -128,7 +128,7 @@ END IDD_INSTL_DLG DIALOGEX 0, 0, 374, 231
STYLE DS_SETFONT | DS_SETFOREGROUND | DS_FIXEDSYS | DS_CENTER | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "VeraCrypt Setup Wizard"
-CLASS "CustomDlg"
+CLASS "VeraCryptCustomDlg"
FONT 8, "MS Shell Dlg", 0, 0, 0x0
BEGIN
PUSHBUTTON "&Help",IDHELP,150,211,50,14
|