summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastien Blaisot <sebastien@blaisot.org>2016-01-02 11:29:40 +0100
committerSebastien Blaisot <sebastien@blaisot.org>2016-01-02 11:29:40 +0100
commit62b89c59283dafebe748c47d10b3ed3fbd8f99e9 (patch)
tree139e48a8854755d22f98e447f238e8aab218dc84
parenta381cb2007c912d85f71f07f0341e401301221da (diff)
allow wind uninstaller to be run silently
-rw-r--r--build/nsis/Mixxx.nsi4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/nsis/Mixxx.nsi b/build/nsis/Mixxx.nsi
index c5f08be072..a38c6b4a91 100644
--- a/build/nsis/Mixxx.nsi
+++ b/build/nsis/Mixxx.nsi
@@ -302,12 +302,12 @@ SectionEnd
Function un.onUninstSuccess
HideWindow
- MessageBox MB_ICONINFORMATION|MB_OK "$(^Name) was successfully removed from your computer."
+ MessageBox MB_ICONINFORMATION|MB_OK "$(^Name) was successfully removed from your computer." /SD IDOK
FunctionEnd
Function un.onInit
!insertmacro MUI_UNGETLANGUAGE
- MessageBox MB_ICONQUESTION|MB_YESNO|MB_DEFBUTTON2 "Are you sure you want to completely remove $(^Name) and all of its components?" IDYES +2
+ MessageBox MB_ICONQUESTION|MB_YESNO|MB_DEFBUTTON2 "Are you sure you want to completely remove $(^Name) and all of its components?" /SD IDYES IDYES +2
Abort
!insertmacro MULTIUSER_UNINIT
FunctionEnd