summaryrefslogtreecommitdiffstats
path: root/base
diff options
context:
space:
mode:
Diffstat (limited to 'base')
-rw-r--r--base/registry.cc4
-rw-r--r--base/registry.h4
2 files changed, 6 insertions, 2 deletions
diff --git a/base/registry.cc b/base/registry.cc
index d4158df..0040e1a 100644
--- a/base/registry.cc
+++ b/base/registry.cc
@@ -145,6 +145,10 @@ RegKey::RegKey(HKEY rootkey, const wchar_t* subkey, REGSAM access)
}
}
+RegKey::~RegKey() {
+ Close();
+}
+
void RegKey::Close() {
StopWatching();
if (key_) {
diff --git a/base/registry.h b/base/registry.h
index a9a6997..4702a78 100644
--- a/base/registry.h
+++ b/base/registry.h
@@ -22,12 +22,12 @@ class RegKey {
public:
RegKey(HKEY rootkey = NULL, const wchar_t* subkey = NULL,
REGSAM access = KEY_READ);
- ~RegKey() { Close(); }
+ ~RegKey();
bool Create(HKEY rootkey, const wchar_t* subkey, REGSAM access = KEY_READ);
bool CreateWithDisposition(HKEY rootkey, const wchar_t* subkey,
- DWORD* disposition, REGSAM access = KEY_READ);
+ DWORD* disposition, REGSAM access);
bool Open(HKEY rootkey, const wchar_t* subkey, REGSAM access = KEY_READ);