From 72cb6ff3b3f6aa8f9ed8a3bf10e334f8eb50be99 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 17 Aug 1998 22:19:17 +0000 Subject: [PATCH] a micro bug (but which was enough to break regtest sample) corrected git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@581 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/registry.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/msw/registry.cpp b/src/msw/registry.cpp index 1fcc78c55f..0653504aea 100644 --- a/src/msw/registry.cpp +++ b/src/msw/registry.cpp @@ -210,7 +210,7 @@ wxRegKey::wxRegKey(const wxRegKey& keyParent, const wxString& strKey) : m_strKey(keyParent.m_strKey) { // combine our name with parent's to get the full name - if ( !strKey.IsEmpty() && strKey[0] != REG_SEPARATOR ) + if ( !m_strKey.IsEmpty() && strKey[0] != REG_SEPARATOR ) m_strKey += REG_SEPARATOR; m_strKey += strKey; -- 2.45.2