summaryrefslogtreecommitdiff
path: root/framework/inc/stdtypes.h
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2013-02-22 11:12:12 +0100
committerJulien Nabet <serval2412@yahoo.fr>2013-02-22 11:12:33 +0100
commit1443a9f7abce965d1ca3ccf0a8f92562ebf82c07 (patch)
treec753e7c1cd9ec33b2dbeaa9defafcdd1b3355b8a /framework/inc/stdtypes.h
parent45739fad0b1d55e72cc1ed508b8ea33a74219290 (diff)
[Uu]sefull -> [Uu]seful
Change-Id: I5dad83789ff9b6815561208679a5e19821041e1f
Diffstat (limited to 'framework/inc/stdtypes.h')
-rw-r--r--framework/inc/stdtypes.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/framework/inc/stdtypes.h b/framework/inc/stdtypes.h
index 904e3d30cc4a..8d394378128e 100644
--- a/framework/inc/stdtypes.h
+++ b/framework/inc/stdtypes.h
@@ -92,7 +92,7 @@ struct KeyEventEqualsFunc
/**
Basic string list based on a std::vector()
- It implements some additional funtionality which can be usefull but
+ It implements some additional funtionality which can be useful but
is missing at the normal vector implementation.
*/
class OUStringList : public ::comphelper::SequenceAsVector< ::rtl::OUString >
@@ -127,7 +127,7 @@ class OUStringList : public ::comphelper::SequenceAsVector< ::rtl::OUString >
/**
Basic string queue based on a std::queue()
- It implements some additional funtionality which can be usefull but
+ It implements some additional funtionality which can be useful but
is missing at the normal std implementation.
*/
typedef ::std::queue< ::rtl::OUString > OUStringQueue;
@@ -136,7 +136,7 @@ typedef ::std::queue< ::rtl::OUString > OUStringQueue;
/**
Basic hash based on a boost::unordered_map() which provides key=[OUString] and value=[template type] pairs
- It implements some additional funtionality which can be usefull but
+ It implements some additional funtionality which can be useful but
is missing at the normal hash implementation.
*/
template< class TType >