summaryrefslogtreecommitdiffstats
path: root/include/cppuhelper
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2018-03-29 15:59:27 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-03-29 18:22:12 +0200
commitda4121ee730a3c4c95bfc717c76ec016e6861737 (patch)
treee9efa364b56259112c539d0c2af8ef2dadcb6a1e /include/cppuhelper
parentUse for-range loop in include/canvas (diff)
downloadcore-da4121ee730a3c4c95bfc717c76ec016e6861737.tar.gz
core-da4121ee730a3c4c95bfc717c76ec016e6861737.zip
Fix indent in interfacecontainer.hxx
Change-Id: I85ab503b52e9d5fa20fcc20b136c92ce5cb7b6cf Reviewed-on: https://gerrit.libreoffice.org/52078 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/cppuhelper')
-rw-r--r--include/cppuhelper/interfacecontainer.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/cppuhelper/interfacecontainer.hxx b/include/cppuhelper/interfacecontainer.hxx
index b30adbab96c3..62d7eacda5e9 100644
--- a/include/cppuhelper/interfacecontainer.hxx
+++ b/include/cppuhelper/interfacecontainer.hxx
@@ -91,7 +91,7 @@ OInterfaceContainerHelper * OMultiTypeInterfaceContainerHelperVar< key , hashImp
{
::osl::MutexGuard aGuard( rMutex );
- typename InterfaceMap::iterator iter = find( rKey );
+ typename InterfaceMap::iterator iter = find( rKey );
if( iter != m_pMap->end() )
return static_cast<OInterfaceContainerHelper*>( (*iter).second );
return NULL;