summaryrefslogtreecommitdiff
path: root/svtools/source/uno/treecontrolpeer.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svtools/source/uno/treecontrolpeer.cxx')
-rw-r--r--svtools/source/uno/treecontrolpeer.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svtools/source/uno/treecontrolpeer.cxx b/svtools/source/uno/treecontrolpeer.cxx
index 13f004c77888..fc65129125d0 100644
--- a/svtools/source/uno/treecontrolpeer.cxx
+++ b/svtools/source/uno/treecontrolpeer.cxx
@@ -52,7 +52,7 @@ using namespace ::com::sun::star::graphic;
struct LockGuard
{
public:
- LockGuard( sal_Int32& rLock )
+ explicit LockGuard( sal_Int32& rLock )
: mrLock( rLock )
{
rLock++;
@@ -108,7 +108,7 @@ private:
class UnoTreeListItem : public SvLBoxString
{
public:
- UnoTreeListItem( SvTreeListEntry* );
+ explicit UnoTreeListItem( SvTreeListEntry* );
UnoTreeListItem();
virtual ~UnoTreeListItem();
void InitViewData( SvTreeListBox*,SvTreeListEntry*,SvViewDataItem* ) SAL_OVERRIDE;
@@ -611,7 +611,7 @@ sal_Int32 SAL_CALL TreeControlPeer::getSelectionCount() throw (RuntimeException,
class TreeSelectionEnumeration : public ::cppu::WeakImplHelper1< XEnumeration >
{
public:
- TreeSelectionEnumeration( std::list< Any >& rSelection );
+ explicit TreeSelectionEnumeration( std::list< Any >& rSelection );
virtual sal_Bool SAL_CALL hasMoreElements() throw (RuntimeException, std::exception) SAL_OVERRIDE;
virtual Any SAL_CALL nextElement() throw (NoSuchElementException, WrappedTargetException, RuntimeException, std::exception) SAL_OVERRIDE;