summaryrefslogtreecommitdiff
path: root/odk
diff options
context:
space:
mode:
Diffstat (limited to 'odk')
-rw-r--r--odk/examples/DevelopersGuide/Components/CppComponent/service1_impl.cxx2
-rw-r--r--odk/examples/DevelopersGuide/Components/CppComponent/service2_impl.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/odk/examples/DevelopersGuide/Components/CppComponent/service1_impl.cxx b/odk/examples/DevelopersGuide/Components/CppComponent/service1_impl.cxx
index d68b96876eb5..a8b9305314f6 100644
--- a/odk/examples/DevelopersGuide/Components/CppComponent/service1_impl.cxx
+++ b/odk/examples/DevelopersGuide/Components/CppComponent/service1_impl.cxx
@@ -70,7 +70,7 @@ class MyService1Impl
{
oslInterlockedCount m_refcount;
OUString m_sData;
- // it's good practise to store the context for further use when you use
+ // it's good practice to store the context for further use when you use
// other UNO API's in your implementation
Reference< XComponentContext > m_xContext;
public:
diff --git a/odk/examples/DevelopersGuide/Components/CppComponent/service2_impl.cxx b/odk/examples/DevelopersGuide/Components/CppComponent/service2_impl.cxx
index 840252f691fe..1920f82ead7c 100644
--- a/odk/examples/DevelopersGuide/Components/CppComponent/service2_impl.cxx
+++ b/odk/examples/DevelopersGuide/Components/CppComponent/service2_impl.cxx
@@ -74,7 +74,7 @@ class MyService2Impl : public ::cppu::WeakImplHelper3<
::my_module::XSomething, lang::XServiceInfo, lang::XInitialization >
{
OUString m_sData;
- // it's good practise to store the context for further use when you use
+ // it's good practice to store the context for further use when you use
// other UNO API's in your implementation
Reference< XComponentContext > m_xContext;
public: