diff options
author | Jesús Corrius <jesus@softcatala.org> | 2012-02-01 14:42:58 +0100 |
---|---|---|
committer | Jesús Corrius <jesus@softcatala.org> | 2012-02-01 14:43:37 +0100 |
commit | 7be0cc289d9745e0842c4fa6c0a6ac3450f3801b (patch) | |
tree | 5b349b17cc872dfb45ef5ec73a6ba2eec27a37ef /unotools/inc | |
parent | e8b7f1faaf3b0fd837a236a4a53d0f7392723713 (diff) |
A few safe replacements of pathes->paths
Diffstat (limited to 'unotools/inc')
-rw-r--r-- | unotools/inc/unotools/configitem.hxx | 2 | ||||
-rw-r--r-- | unotools/inc/unotools/configpathes.hxx | 6 | ||||
-rw-r--r-- | unotools/inc/unotools/pathoptions.hxx | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/unotools/inc/unotools/configitem.hxx b/unotools/inc/unotools/configitem.hxx index 7910b68af5dd..fe6f437cc6c1 100644 --- a/unotools/inc/unotools/configitem.hxx +++ b/unotools/inc/unotools/configitem.hxx @@ -63,7 +63,7 @@ namespace utl { CONFIG_NAME_PLAINTEXT_NAME, // unescaped local node name, for user display etc. CONFIG_NAME_LOCAL_NAME, // local node name, for use in XNameAccess etc. ("Item", "Q & A") - CONFIG_NAME_LOCAL_PATH, // one-level relative path, for use when building pathes etc. ("Item", "Typ['Q & A']") + CONFIG_NAME_LOCAL_PATH, // one-level relative path, for use when building paths etc. ("Item", "Typ['Q & A']") CONFIG_NAME_FULL_PATH, // full absolute path. ("/org.openoffice.Sample/Group/Item", "/org.openoffice.Sample/Set/Typ['Q & A']") CONFIG_NAME_DEFAULT = CONFIG_NAME_LOCAL_PATH // default format diff --git a/unotools/inc/unotools/configpathes.hxx b/unotools/inc/unotools/configpathes.hxx index 30a0845e3541..258ea01c97ec 100644 --- a/unotools/inc/unotools/configpathes.hxx +++ b/unotools/inc/unotools/configpathes.hxx @@ -95,7 +95,7 @@ namespace utl @param _sNestedPath A configuration path that maybe points to a descendant of the node - identified by <var>_sPrefixPath</var>, with both pathes starting + identified by <var>_sPrefixPath</var>, with both paths starting from the same node (or both being absolute). @param _sPrefixPath @@ -108,7 +108,7 @@ namespace utl @returns <TRUE/>, if <var>_sPrefixPath</var> is a prefix of <var>_sNestedPath</var>; <FALSE/> otherwise.<BR/> - If both pathes are equal <TRUE/> is returned. + If both paths are equal <TRUE/> is returned. */ sal_Bool isPrefixOfConfigurationPath(::rtl::OUString const& _sNestedPath, @@ -119,7 +119,7 @@ namespace utl @param _sNestedPath A configuration path that points to a descendant of the node - identified by <var>_sPrefixPath</var>, with both pathes starting + identified by <var>_sPrefixPath</var>, with both paths starting from the same node (or both being absolute). @param _sPrefixPath diff --git a/unotools/inc/unotools/pathoptions.hxx b/unotools/inc/unotools/pathoptions.hxx index 90291368dd95..2ed11788652a 100644 --- a/unotools/inc/unotools/pathoptions.hxx +++ b/unotools/inc/unotools/pathoptions.hxx @@ -76,7 +76,7 @@ public: SvtPathOptions(); virtual ~SvtPathOptions(); - // get the pathes, not const because of using a mutex + // get the paths, not const because of using a mutex const String& GetAddinPath() const; const String& GetAutoCorrectPath() const; const String& GetAutoTextPath() const; @@ -102,7 +102,7 @@ public: const String& GetUIConfigPath() const; const String& GetFingerprintPath() const; - // set the pathes + // set the paths void SetAddinPath( const String& rPath ); void SetAutoCorrectPath( const String& rPath ); void SetAutoTextPath( const String& rPath ); |