Commit 44fb23dc authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

msi: Don't set _BrowseProperty.

This is a revert of 166a7e99. _BrowseProperty is not set by Windows, but should rather be set by the program in question. Signed-off-by: 's avatarZebediah Figura <z.figura12@gmail.com> Signed-off-by: 's avatarHans Leidekker <hans@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent b4c39f4e
......@@ -746,8 +746,6 @@ static VOID set_installer_properties(MSIPACKAGE *package)
static const WCHAR szPrintHoodFolder[] = {'P','r','i','n','t','H','o','o','d','F','o','l','d','e','r',0};
static const WCHAR szRecentFolder[] = {'R','e','c','e','n','t','F','o','l','d','e','r',0};
static const WCHAR szComputerName[] = {'C','o','m','p','u','t','e','r','N','a','m','e',0};
static const WCHAR szBrowseProperty[] = {'_','B','r','o','w','s','e','P','r','o','p','e','r','t','y',0};
static const WCHAR szInstallDir[] = {'I','N','S','T','A','L','L','D','I','R',0};
/*
* Other things that probably should be set:
......@@ -1019,7 +1017,6 @@ static VOID set_installer_properties(MSIPACKAGE *package)
msi_free( computername );
}
}
msi_set_property( package->db, szBrowseProperty, szInstallDir, -1 );
}
static MSIPACKAGE *msi_alloc_package( void )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment