1. serious bug in wxRegConfig corrected - deleting a value would delete the
key containing it if it didn't have any subkeys (i.e. would delete the sibling values) 2. wxRegKey::GetFirstValue() starts with first value, not the second one 3. typo in wxStaticText::DoSetSize() which prevented width.AsIs() from working fixed 4. adjustment for the parent client area offset not done for the top level windows (dialogs and frames) any more git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2904 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -532,6 +532,18 @@ bool wxRegKey::HasValue(const wxChar *szValue) const
|
||||
#endif // WIN16/32
|
||||
}
|
||||
|
||||
// returns TRUE if this key has any values
|
||||
bool wxRegKey::HasValues() const
|
||||
{
|
||||
// suppress possible messages from GetFirstValue()
|
||||
wxLogNull nolog;
|
||||
|
||||
// just call GetFirstValue with dummy parameters
|
||||
wxString str;
|
||||
long l;
|
||||
return CONST_CAST GetFirstValue(str, l);
|
||||
}
|
||||
|
||||
// returns TRUE if this key has any subkeys
|
||||
bool wxRegKey::HasSubkeys() const
|
||||
{
|
||||
@@ -718,8 +730,7 @@ bool wxRegKey::GetNextValue(wxString& strValueName, long& lIndex) const
|
||||
wxChar szValueName[1024]; // @@ use RegQueryInfoKey...
|
||||
DWORD dwValueLen = WXSIZEOF(szValueName);
|
||||
|
||||
lIndex++;
|
||||
m_dwLastError = RegEnumValue((HKEY) m_hKey, lIndex,
|
||||
m_dwLastError = RegEnumValue((HKEY) m_hKey, lIndex++,
|
||||
szValueName, &dwValueLen,
|
||||
RESERVED,
|
||||
NULL, // [out] type
|
||||
|
Reference in New Issue
Block a user