summaryrefslogtreecommitdiff
path: root/setup_native/source
diff options
context:
space:
mode:
authorCaolán McNamara <cmc@openoffice.org>2009-11-10 10:56:47 +0000
committerCaolán McNamara <cmc@openoffice.org>2009-11-10 10:56:47 +0000
commitad82f3632d986351f60f1f979c769b8a26ebabd9 (patch)
tree8e086cde28ab689fab40f248dc3fee9b159b8dae /setup_native/source
parent3abde8a5f1a5fd9636589ad13e4e034a11e6647b (diff)
parente76dcc39bd144789124272efc41d4823a672e284 (diff)
cmcfixes66: merge with DEV300 m64
Diffstat (limited to 'setup_native/source')
-rwxr-xr-xsetup_native/source/win32/customactions/shellextensions/checkrunningoffice.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/setup_native/source/win32/customactions/shellextensions/checkrunningoffice.cxx b/setup_native/source/win32/customactions/shellextensions/checkrunningoffice.cxx
index 1fe1d2335b88..70c0d9fef1e6 100755
--- a/setup_native/source/win32/customactions/shellextensions/checkrunningoffice.cxx
+++ b/setup_native/source/win32/customactions/shellextensions/checkrunningoffice.cxx
@@ -257,6 +257,9 @@ extern "C" UINT __stdcall IsOfficeRunning( MSIHANDLE handle )
// When there is no program folder, there could be no running office
if ( dwError == ERROR_FILE_NOT_FOUND )
return ERROR_SUCCESS;
+ if ( dwError == ERROR_PATH_NOT_FOUND )
+ return ERROR_SUCCESS;
+
// The destination folder should never exist, don't know what to do here
if ( dwError == ERROR_ALREADY_EXISTS )
return ERROR_SUCCESS;