Fixed compile bug in dropsrc.cpp (constr. arg); GnuWin32 fix in registry.cpp;
combobox event fix; moved SetAcceleratorTable down to window.h/cpp git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@524 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -297,10 +297,17 @@ wxString wxRegKey::GetName(bool bShortPrefix) const
|
||||
return str;
|
||||
}
|
||||
|
||||
#ifdef __GNUWIN32__
|
||||
bool wxRegKey::GetKeyInfo(uint* pnSubKeys,
|
||||
uint* pnMaxKeyLen,
|
||||
uint* pnValues,
|
||||
uint* pnMaxValueLen) const
|
||||
#else
|
||||
bool wxRegKey::GetKeyInfo(ulong *pnSubKeys,
|
||||
ulong *pnMaxKeyLen,
|
||||
ulong *pnValues,
|
||||
ulong *pnMaxValueLen) const
|
||||
#endif
|
||||
{
|
||||
#ifdef __WIN32__
|
||||
m_dwLastError = ::RegQueryInfoKey
|
||||
|
Reference in New Issue
Block a user