summaryrefslogtreecommitdiff
path: root/include/registry
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2017-01-24 12:56:13 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2017-01-25 06:05:54 +0000
commit6d898945d57b53b862c41a3adbd0d4eddd8dfbcd (patch)
treef25cdb30411048df0b5dac05bb80dea50898c703 /include/registry
parent3cda5ffdda64eff9282450816334d18f7aa015bd (diff)
Fix typo in comments: relativ -> relative
Change-Id: I58833e503e93b8057f92710c5828bba6cecd4e09 Reviewed-on: https://gerrit.libreoffice.org/33488 Reviewed-by: Takeshi Abe <tabe@fixedpoint.jp> Tested-by: Takeshi Abe <tabe@fixedpoint.jp>
Diffstat (limited to 'include/registry')
-rw-r--r--include/registry/registry.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/registry/registry.hxx b/include/registry/registry.hxx
index 0aea6fd86ed7..230e0293f68d 100644
--- a/include/registry/registry.hxx
+++ b/include/registry/registry.hxx
@@ -371,7 +371,7 @@ public:
/** creates a new key or opens a key if the specified key already exists.
- The specified keyname is relativ to this key.
+ The specified keyname is relative to this key.
@param keyName specifies the name of the key which will be opened or created.
@param rNewKey references a RegistryKey which will be filled with the new or open key.
@return RegError::NO_ERROR if succeeds else an error code.
@@ -381,7 +381,7 @@ public:
/** opens the specified key.
- The specified keyname is relativ to this key.
+ The specified keyname is relative to this key.
@param keyName specifies the name of the key which will be opened.
@param rOpenKey references a RegistryKey which will be filled with the open key.
@return RegError::NO_ERROR if succeeds else an error code.
@@ -391,7 +391,7 @@ public:
/** opens all subkeys of the specified key.
- The specified keyname is relativ to this key.
+ The specified keyname is relative to this key.
@param keyName specifies the name of the key which subkeys will be opened.
@param rSubKeys reference a RegistryKeyArray which will be filled with the open subkeys.
@return RegError::NO_ERROR if succeeds else an error code.
@@ -401,7 +401,7 @@ public:
/** returns an array with the names of all subkeys of the specified key.
- The specified keyname is relativ to this key.
+ The specified keyname is relative to this key.
@param keyName specifies the name of the key which subkey names will be returned.
@param rSubKeyNames reference a RegistryKeyNames array which will be filled with the subkey names.
@return RegError::NO_ERROR if succeeds else an error code.