summaryrefslogtreecommitdiff
path: root/unotools/source/config/printwarningoptions.cxx
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-04-06 20:25:20 +0300
committerTor Lillqvist <tml@collabora.com>2014-04-06 20:27:21 +0300
commitd9701f0ebce5b06212a9361ce753f3bf17510418 (patch)
treee4c035be2e7a4313266164cfcdead0649c1650f6 /unotools/source/config/printwarningoptions.cxx
parent6d27b176fba61653e74f4179451308b9a7a889a8 (diff)
Typo: s/ouer/our
Change-Id: I0179678c6c5dd6a05b1d7d5038a901e7bf2af3de
Diffstat (limited to 'unotools/source/config/printwarningoptions.cxx')
-rw-r--r--unotools/source/config/printwarningoptions.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/unotools/source/config/printwarningoptions.cxx b/unotools/source/config/printwarningoptions.cxx
index 297d8cbafcc7..40faa76f5f42 100644
--- a/unotools/source/config/printwarningoptions.cxx
+++ b/unotools/source/config/printwarningoptions.cxx
@@ -237,9 +237,9 @@ SvtPrintWarningOptions::SvtPrintWarningOptions()
{
// Global access, must be guarded (multithreading!).
MutexGuard aGuard( GetOwnStaticMutex() );
- // Increase ouer refcount ...
+ // Increase our refcount ...
++m_nRefCount;
- // ... and initialize ouer data container only if it not already!
+ // ... and initialize our data container only if it not already!
if( m_pDataContainer == NULL )
{
m_pDataContainer = new SvtPrintWarningOptions_Impl();
@@ -253,10 +253,10 @@ SvtPrintWarningOptions::~SvtPrintWarningOptions()
{
// Global access, must be guarded (multithreading!)
MutexGuard aGuard( GetOwnStaticMutex() );
- // Decrease ouer refcount.
+ // Decrease our refcount.
--m_nRefCount;
// If last instance was deleted ...
- // we must destroy ouer static data container!
+ // we must destroy our static data container!
if( m_nRefCount <= 0 )
{
delete m_pDataContainer;