X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/90186e524e347a3a779c928a44fb7d744b3efcf7..8ffd43c56b793781fde046aa532340b92a0067eb:/include/wx/msw/registry.h diff --git a/include/wx/msw/registry.h b/include/wx/msw/registry.h index f4694aff5c..8f43954176 100644 --- a/include/wx/msw/registry.h +++ b/include/wx/msw/registry.h @@ -162,19 +162,7 @@ public: // get value type ValueType GetValueType(const char *szValue) const; // returns TRUE if the value contains a number (else it's some string) - bool IsNumericValue(const char *szValue) const - { - ValueType type = GetValueType(szValue); - switch ( type ) { - case Type_Dword: - case Type_Dword_little_endian: - case Type_Dword_big_endian: - return TRUE; - - default: - return FALSE; - } - } + bool IsNumericValue(const char *szValue) const; // assignment operators set the default value of the key wxRegKey& operator=(const wxString& strValue)