]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed incorrect cast in wxRegKey:GetName()
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 14 Jan 2003 09:02:38 +0000 (09:02 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 14 Jan 2003 09:02:38 +0000 (09:02 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18722 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/registry.cpp

index 75fb41f4aad3b25caac5745193f05b465fffabdd..4d3dc28b9b10f47c45c4031709ba32ede17dcfdb 100644 (file)
@@ -299,7 +299,7 @@ bool wxRegKey::Exists() const
 // returns the full name of the key (prefix is abbreviated if bShortPrefix)
 wxString wxRegKey::GetName(bool bShortPrefix) const
 {
 // returns the full name of the key (prefix is abbreviated if bShortPrefix)
 wxString wxRegKey::GetName(bool bShortPrefix) const
 {
-  StdKey key = GetStdKeyFromHkey((StdKey) m_hRootKey);
+  StdKey key = GetStdKeyFromHkey((WXHKEY) m_hRootKey);
   wxString str = bShortPrefix ? aStdKeys[key].szShortName
                               : aStdKeys[key].szName;
   if ( !m_strKey.IsEmpty() )
   wxString str = bShortPrefix ? aStdKeys[key].szShortName
                               : aStdKeys[key].szName;
   if ( !m_strKey.IsEmpty() )