diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-04-06 20:25:20 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-04-06 20:27:21 +0300 |
commit | d9701f0ebce5b06212a9361ce753f3bf17510418 (patch) | |
tree | e4c035be2e7a4313266164cfcdead0649c1650f6 /unotools/source/config/historyoptions.cxx | |
parent | 6d27b176fba61653e74f4179451308b9a7a889a8 (diff) |
Typo: s/ouer/our
Change-Id: I0179678c6c5dd6a05b1d7d5038a901e7bf2af3de
Diffstat (limited to 'unotools/source/config/historyoptions.cxx')
-rw-r--r-- | unotools/source/config/historyoptions.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/unotools/source/config/historyoptions.cxx b/unotools/source/config/historyoptions.cxx index c156158989ea..272cc31071ef 100644 --- a/unotools/source/config/historyoptions.cxx +++ b/unotools/source/config/historyoptions.cxx @@ -566,9 +566,9 @@ SvtHistoryOptions::SvtHistoryOptions() { // 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 exist! + // ... and initialize our data container only if it not already exist! if( m_pDataContainer == NULL ) { m_pDataContainer = new SvtHistoryOptions_Impl; @@ -583,10 +583,10 @@ SvtHistoryOptions::~SvtHistoryOptions() { // 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; |