- m_keyLocalRoot(wxRegKey::HKCU, SOFTWARE_KEY + appName),
- m_keyLocal(m_keyLocalRoot, ""),
- m_keyGlobalRoot(wxRegKey::HKLM, SOFTWARE_KEY + appName),
- m_keyGlobal(m_keyGlobalRoot, "")
-{
- // TODO: really, we should check and supply an app name if one isn't supplied.
- // Unfortunately I don't know how to initialise the member wxRegKey
- // variables from within the constructor body. -- JACS
- // Vadim - we just need an implementation of wxRegKey::Set,
- // and then we can uncomment this and remove the constructor lines above.
-/*
- wxString strRoot(appName);
- if (appName.IsEmpty() && wxTheApp)