Mac Uninstaller: Display new image in "Are you sure" dialog showing new BOINC logo going into the trash for non-English speaking users

svn path=/trunk/boinc/; revision=13421
This commit is contained in:
Charlie Fenton 2007-08-21 03:00:50 +00:00
parent 8da726aa13
commit 74d7e474b9
3 changed files with 14 additions and 2 deletions

View File

@ -8024,3 +8024,14 @@ Rom 20 Aug 2007
screensaver_win.cpp screensaver_win.cpp
clientscr/res/ clientscr/res/
boinc.bmp boinc.bmp
Charlie 20 Aug 2007
Mac Uninstaller: Display new image in "Are you sure" dialog showing new
BOINC logo going into the trash for non-English speaking users.
mac_build/
boinc.xcodeproj/
project.pbxproj
mac_installer/
uninstall.cpp
Uninstaller.rsrc

View File

View File

@ -96,8 +96,9 @@ int main(int argc, char *argv[])
p = strchr(appName, ' '); p = strchr(appName, ' ');
p += 1; // Point to brand name following "Uninstall " p += 1; // Point to brand name following "Uninstall "
cancelled = ! ShowMessage(true, "Are you sure you want to completely remove %s and all its data from your computer?\n\n" cancelled = (Alert(128, NULL) == cancel);
"Any unreported results will be lost.", p); // cancelled = ! ShowMessage(true, "Are you sure you want to completely remove %s and all its data from your computer?\n\n"
// "Any unreported results will be lost.", p);
if (! cancelled) if (! cancelled)
err = DoPrivilegedExec(p, pathToSelf, "--privileged", NULL, NULL, NULL, NULL); err = DoPrivilegedExec(p, pathToSelf, "--privileged", NULL, NULL, NULL, NULL);