summaryrefslogtreecommitdiff
path: root/PC/bdist_wininst
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2004-07-07 07:34:40 +0000
committerThomas Heller <theller@ctypes.org>2004-07-07 07:34:40 +0000
commitf75e6bd551005d8c85412221a4011b36fb832d54 (patch)
treeab8b45da9e25d7f7e6081ad5d4915e92220c34b5 /PC/bdist_wininst
parentf3da6fdcd53af8eb519fa478bf9c94ce1d7b4c66 (diff)
downloadcpython-f75e6bd551005d8c85412221a4011b36fb832d54.tar.gz
Remove the annoing and useless messagebox asking about overwriting files.
Fixes SF #984290.
Diffstat (limited to 'PC/bdist_wininst')
-rw-r--r--PC/bdist_wininst/install.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/PC/bdist_wininst/install.c b/PC/bdist_wininst/install.c
index 95005577dd..d7bfc4fe0b 100644
--- a/PC/bdist_wininst/install.c
+++ b/PC/bdist_wininst/install.c
@@ -145,8 +145,6 @@ char *bitmap_bytes;
/* wParam: number of this file */
/* lParam: points to pathname */
-enum { UNSPECIFIED, ALWAYS, NEVER } allow_overwrite = UNSPECIFIED;
-
static BOOL notify(int code, char *fmt, ...);
/* Note: If scheme.prefix is nonempty, it must end with a '\'! */
@@ -808,28 +806,6 @@ static BOOL SystemError(int error, char *msg)
return FALSE;
}
-static BOOL AskOverwrite(char *filename)
-{
- int result;
- again:
- if (allow_overwrite == ALWAYS)
- return TRUE;
- if (allow_overwrite == NEVER)
- return FALSE;
- result = MessageBox(hDialog,
- "Overwrite existing files?\n"
- "\n"
- "Press YES to ALWAYS overwrite existing files,\n"
- "press NO to NEVER overwrite existing files.",
- "Overwrite options",
- MB_YESNO | MB_ICONQUESTION);
- if (result == IDYES)
- allow_overwrite = ALWAYS;
- else if (result == IDNO)
- allow_overwrite = NEVER;
- goto again;
-}
-
static BOOL notify (int code, char *fmt, ...)
{
char Buffer[1024];
@@ -844,7 +820,6 @@ static BOOL notify (int code, char *fmt, ...)
switch (code) {
/* Questions */
case CAN_OVERWRITE:
- result = AskOverwrite(Buffer);
break;
/* Information notification */