From 2105c90c1633d324bc69d4fff6c1942f75a7c6be Mon Sep 17 00:00:00 2001 From: joostverburg Date: Sat, 12 Oct 2002 18:33:28 +0000 Subject: [PATCH] new icon name, font in MUI_INTERFACE macro git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1395 212acab6-be3b-0410-9dea-997c60f758d6 --- Examples/Modern UI/Basic.nsi | 2 +- Examples/Modern UI/InstallOptions.nsi | 2 +- Examples/Modern UI/MultiLanguage.nsi | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Examples/Modern UI/Basic.nsi b/Examples/Modern UI/Basic.nsi index 2bce6720..4078bab2 100644 --- a/Examples/Modern UI/Basic.nsi +++ b/Examples/Modern UI/Basic.nsi @@ -27,7 +27,7 @@ OutFile "Basic.exe" ;User interface - icons, ui file, check bitmap, progress bar etc. - !insertmacro MUI_INTERFACE "modern.exe" "adni18-installer-C-no48xp.ico" "adni18-uninstall-C-no48xp.ico" "modern.bmp" "smooth" "$9" ;$9 is the variable used to store the current page, do not use this var! + !insertmacro MUI_INTERFACE "modern.exe" "modern-install.ico" "modern-uninstall.ico" "modern.bmp" "smooth" "Tahoma" "$9" ;$9 is the variable used to store the current page, do not use this var! ;License dialog LicenseData "${NSISDIR}\Contrib\Modern UI\License.txt" diff --git a/Examples/Modern UI/InstallOptions.nsi b/Examples/Modern UI/InstallOptions.nsi index 965056ce..355bd180 100644 --- a/Examples/Modern UI/InstallOptions.nsi +++ b/Examples/Modern UI/InstallOptions.nsi @@ -28,7 +28,7 @@ OutFile "InstallOptions.exe" ;User interface - icons, ui file, check bitmap, progress bar etc. - !insertmacro MUI_INTERFACE "modern.exe" "adni18-installer-C-no48xp.ico" "adni18-uninstall-C-no48xp.ico" "modern.bmp" "smooth" "$9" ;$9 is the variable used to store the current page, do not use this var! + !insertmacro MUI_INTERFACE "modern.exe" "modern-install.ico" "modern-uninstall.ico" "modern.bmp" "smooth" "Tahoma" "$9" ;$9 is the variable used to store the current page, do not use this var! !insertmacro MUI_INSTALLOPTIONS "$7" "$8" ;Variables for the Install Options system. Do not use them in .onNext/PrevPage and SetPage ;License dialog diff --git a/Examples/Modern UI/MultiLanguage.nsi b/Examples/Modern UI/MultiLanguage.nsi index f9c291ea..65e28198 100644 --- a/Examples/Modern UI/MultiLanguage.nsi +++ b/Examples/Modern UI/MultiLanguage.nsi @@ -62,7 +62,7 @@ OutFile "MultiLanguage.exe" ;User interface - icons, ui file, check bitmap, progress bar etc. - !insertmacro MUI_INTERFACE "modern.exe" "adni18-installer-C-no48xp.ico" "adni18-uninstall-C-no48xp.ico" "modern.bmp" "smooth" "$9" ;$9 is the variable used to store the current page, do not use this var! + !insertmacro MUI_INTERFACE "modern.exe" "modern-install.ico" "modern-uninstall.ico" "modern.bmp" "smooth" "Tahoma" "$9" ;$9 is the variable used to store the current page, do not use this var! ;License dialog LicenseData /LANG=${LANG_ENGLISH} "${NSISDIR}\Contrib\Modern UI\License.txt"