partial fix for REG_EXPAND_SZ values

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@8540 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2000-10-12 23:33:44 +00:00
parent c05578d7c1
commit 2aad589775

View File

@@ -27,7 +27,6 @@
#include "wx/string.h"
#include "wx/intl.h"
#include "wx/log.h"
#include "wx/config.h" // for wxExpandEnvVars
#ifndef __WIN16__
@@ -846,6 +845,30 @@ bool wxRegKey::QueryValue(const wxChar *szValue, wxString& strValue) const
pBuf,
&dwSize);
strValue.UngetWriteBuf();
// always expand the var expansions in the string
if ( dwType == REG_EXPAND_SZ )
{
DWORD dwExpSize = ::ExpandEnvironmentStrings(strValue, NULL, 0);
bool ok = dwExpSize != 0;
if ( ok )
{
wxString strExpValue;
ok = ::ExpandEnvironmentStrings
(
strValue,
strExpValue.GetWriteBuf(dwExpSize),
dwExpSize
) != 0;
strExpValue.UngetWriteBuf();
strValue = strExpValue;
}
if ( !ok )
{
wxLogLastError(_T("ExpandEnvironmentStrings"));
}
}
}
if ( m_dwLastError == ERROR_SUCCESS ) {