Re-indent the whole file using Tabs for indentation.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@3476 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Enrico Tröger 2009-01-17 13:10:26 +00:00
parent c8690d4486
commit b42da26f78

View File

@ -315,7 +315,6 @@ SectionEnd
; (from http://jabref.svn.sourceforge.net/viewvc/jabref/trunk/jabref/src/windows/nsis/setup.nsi) ; (from http://jabref.svn.sourceforge.net/viewvc/jabref/trunk/jabref/src/windows/nsis/setup.nsi)
!macro IsUserAdmin Result UName !macro IsUserAdmin Result UName
ClearErrors ClearErrors
UserInfo::GetName UserInfo::GetName
IfErrors Win9x IfErrors Win9x
@ -377,13 +376,13 @@ Function .onInit
Goto finish Goto finish
nonsilent: nonsilent:
ExecWait '$R0 _?=$UNINSTDIR' ;Do not copy the uninstaller to a temp file ExecWait '$R0 _?=$UNINSTDIR' ;Do not copy the uninstaller to a temp file
finish: finish:
FunctionEnd FunctionEnd
Function un.onUninstSuccess Function un.onUninstSuccess
HideWindow HideWindow
MessageBox MB_ICONINFORMATION|MB_OK "$(^Name) was successfully removed from your computer." /SD IDOK MessageBox MB_ICONINFORMATION|MB_OK "$(^Name) was successfully removed from your computer." \
/SD IDOK
FunctionEnd FunctionEnd
Function un.onInit Function un.onInit
@ -396,13 +395,15 @@ Function un.onInit
; check if the Geany has been installed with admin permisions ; check if the Geany has been installed with admin permisions
ReadRegStr $0 HKLM "${PRODUCT_UNINST_KEY}" "Publisher" ReadRegStr $0 HKLM "${PRODUCT_UNINST_KEY}" "Publisher"
${if} $0 != "" ${if} $0 != ""
MessageBox MB_OK|MB_ICONSTOP "You need administrator privileges to uninstall Geany!" /SD IDOK MessageBox MB_OK|MB_ICONSTOP "You need administrator privileges to uninstall Geany!" \
/SD IDOK
Abort Abort
${endif} ${endif}
SetShellVarContext current SetShellVarContext current
${endif} ${endif}
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 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 Abort
FunctionEnd FunctionEnd