diff options
author | Tor Lillqvist <tlillqvist@suse.com> | 2011-09-12 14:59:27 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2011-09-12 15:30:35 +0300 |
commit | ac4bc54dc8682430f9b709f54da03e370af55140 (patch) | |
tree | 2559601d43eda9fa11311bf461ba0d005e2f6a9a /setup_native | |
parent | 99d5297d0b97bd3265d3c550134d7aa0e914172f (diff) |
Drop Win9x code
Diffstat (limited to 'setup_native')
-rw-r--r-- | setup_native/source/win32/customactions/shellextensions/postuninstall.cxx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/setup_native/source/win32/customactions/shellextensions/postuninstall.cxx b/setup_native/source/win32/customactions/shellextensions/postuninstall.cxx index d4ac16aec8a3..02311ed753f3 100644 --- a/setup_native/source/win32/customactions/shellextensions/postuninstall.cxx +++ b/setup_native/source/win32/customactions/shellextensions/postuninstall.cxx @@ -138,10 +138,7 @@ extern "C" UINT __stdcall ExecutePostUninstallScript( MSIHANDLE handle ) // MessageBox( NULL, sInfFile.c_str(), "Titel", MB_OK ); - if ( (LONG)GetVersion() < 0 ) - sCommand += _T("setupx.dll"); - else - sCommand += _T("setupapi.dll"); + sCommand += _T("setupapi.dll"); sCommand += _T(",InstallHinfSection PostUninstall 132 "); sCommand += sInfFile; |