summaryrefslogtreecommitdiff
path: root/scripting/source/provider/BrowseNodeFactoryImpl.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-03-26 16:37:00 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-03-26 16:39:26 +0100
commit70cc2b191b95fbc210bc1f0f6a7159f341894f0f (patch)
treea70f4957c454b443520cbf91250c41d9eea80017 /scripting/source/provider/BrowseNodeFactoryImpl.cxx
parent8757bea2e88c6e349e1fe98d8e9695d7b9c6179e (diff)
First batch of adding SAL_OVERRRIDE to overriding function declarations
...mostly done with a rewriting Clang plugin, with just some manual tweaking necessary to fix poor macro usage. Change-Id: I71fa20213e86be10de332ece0aa273239df7b61a
Diffstat (limited to 'scripting/source/provider/BrowseNodeFactoryImpl.cxx')
-rw-r--r--scripting/source/provider/BrowseNodeFactoryImpl.cxx50
1 files changed, 25 insertions, 25 deletions
diff --git a/scripting/source/provider/BrowseNodeFactoryImpl.cxx b/scripting/source/provider/BrowseNodeFactoryImpl.cxx
index 9237294e0035..b2df40e2426c 100644
--- a/scripting/source/provider/BrowseNodeFactoryImpl.cxx
+++ b/scripting/source/provider/BrowseNodeFactoryImpl.cxx
@@ -79,14 +79,14 @@ public:
virtual OUString
SAL_CALL getName()
- throw ( RuntimeException, std::exception )
+ throw ( RuntimeException, std::exception ) SAL_OVERRIDE
{
return m_Name;
}
virtual Sequence< Reference< browse::XBrowseNode > > SAL_CALL
getChildNodes()
- throw ( RuntimeException, std::exception )
+ throw ( RuntimeException, std::exception ) SAL_OVERRIDE
{
std::vector< Sequence< Reference < browse::XBrowseNode > > > seqs;
seqs.reserve( m_Nodes.getLength() );
@@ -126,7 +126,7 @@ public:
virtual sal_Bool SAL_CALL
hasChildNodes()
- throw ( RuntimeException, std::exception )
+ throw ( RuntimeException, std::exception ) SAL_OVERRIDE
{
if ( m_Nodes.getLength() != 0 )
{
@@ -151,7 +151,7 @@ public:
}
virtual sal_Int16 SAL_CALL getType()
- throw ( RuntimeException, std::exception )
+ throw ( RuntimeException, std::exception ) SAL_OVERRIDE
{
return browse::BrowseNodeTypes::CONTAINER;
}
@@ -203,14 +203,14 @@ public:
virtual OUString SAL_CALL getName()
- throw ( RuntimeException, std::exception )
+ throw ( RuntimeException, std::exception ) SAL_OVERRIDE
{
return m_sNodeName;
}
virtual Sequence< Reference< browse::XBrowseNode > > SAL_CALL
getChildNodes()
- throw ( RuntimeException, std::exception )
+ throw ( RuntimeException, std::exception ) SAL_OVERRIDE
{
if ( m_hBNA == NULL )
{
@@ -231,13 +231,13 @@ public:
}
virtual sal_Bool SAL_CALL hasChildNodes()
- throw ( RuntimeException, std::exception )
+ throw ( RuntimeException, std::exception ) SAL_OVERRIDE
{
return sal_True;
}
virtual sal_Int16 SAL_CALL getType()
- throw ( RuntimeException, std::exception )
+ throw ( RuntimeException, std::exception ) SAL_OVERRIDE
{
return browse::BrowseNodeTypes::CONTAINER;
}
@@ -430,7 +430,7 @@ public:
virtual Sequence< Reference< browse::XBrowseNode > > SAL_CALL
getChildNodes()
- throw ( RuntimeException, std::exception )
+ throw ( RuntimeException, std::exception ) SAL_OVERRIDE
{
if ( hasChildNodes() )
{
@@ -464,28 +464,28 @@ public:
}
virtual sal_Int16 SAL_CALL getType()
- throw ( RuntimeException, std::exception )
+ throw ( RuntimeException, std::exception ) SAL_OVERRIDE
{
return m_xWrappedBrowseNode->getType();
}
virtual OUString
SAL_CALL getName()
- throw ( RuntimeException, std::exception )
+ throw ( RuntimeException, std::exception ) SAL_OVERRIDE
{
return m_xWrappedBrowseNode->getName();
}
virtual sal_Bool SAL_CALL
hasChildNodes()
- throw ( RuntimeException, std::exception )
+ throw ( RuntimeException, std::exception ) SAL_OVERRIDE
{
return m_xWrappedBrowseNode->hasChildNodes();
}
// XInterface
virtual Any SAL_CALL queryInterface( const Type& aType )
- throw ( com::sun::star::uno::RuntimeException, std::exception )
+ throw ( com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE
{
Any aRet = t_BrowseNodeBase::queryInterface( aType );
if ( aRet.hasValue() )
@@ -503,13 +503,13 @@ public:
}
virtual void SAL_CALL acquire()
- throw ()
+ throw () SAL_OVERRIDE
{
osl_atomic_increment( &m_refCount );
}
virtual void SAL_CALL release()
- throw ()
+ throw () SAL_OVERRIDE
{
if ( osl_atomic_decrement( &m_refCount ) == 0 )
{
@@ -519,12 +519,12 @@ public:
// XTypeProvider (implemnented by base, but needs to be overridden for
// delegating to aggregate)
virtual Sequence< Type > SAL_CALL getTypes()
- throw ( com::sun::star::uno::RuntimeException, std::exception )
+ throw ( com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE
{
return m_xWrappedTypeProv->getTypes();
}
virtual Sequence< sal_Int8 > SAL_CALL getImplementationId()
- throw ( com::sun::star::uno::RuntimeException, std::exception )
+ throw ( com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE
{
return css::uno::Sequence<sal_Int8>();
}
@@ -558,7 +558,7 @@ public:
virtual Sequence< Reference< browse::XBrowseNode > > SAL_CALL
getChildNodes()
- throw ( RuntimeException, std::exception )
+ throw ( RuntimeException, std::exception ) SAL_OVERRIDE
{
// no need to sort user, share, doc1...docN
//::std::sort( m_vNodes.begin(), m_vNodes.end(), alphaSortForBNodes() );
@@ -572,21 +572,21 @@ public:
}
virtual sal_Int16 SAL_CALL getType()
- throw ( RuntimeException, std::exception )
+ throw ( RuntimeException, std::exception ) SAL_OVERRIDE
{
return browse::BrowseNodeTypes::ROOT;
}
virtual OUString
SAL_CALL getName()
- throw ( RuntimeException, std::exception )
+ throw ( RuntimeException, std::exception ) SAL_OVERRIDE
{
return m_Name;
}
virtual sal_Bool SAL_CALL
hasChildNodes()
- throw ( RuntimeException, std::exception )
+ throw ( RuntimeException, std::exception ) SAL_OVERRIDE
{
sal_Bool result = sal_True;
if ( !m_vNodes.size() )
@@ -615,14 +615,14 @@ public:
}
virtual OUString SAL_CALL getName()
- throw ( RuntimeException, std::exception )
+ throw ( RuntimeException, std::exception ) SAL_OVERRIDE
{
return OUString("Root");
}
virtual Sequence< Reference< browse::XBrowseNode > > SAL_CALL
getChildNodes()
- throw ( RuntimeException, std::exception )
+ throw ( RuntimeException, std::exception ) SAL_OVERRIDE
{
Sequence < Reference < browse::XBrowseNode > > locnBNs = getAllBrowseNodes( m_xComponentContext );
@@ -639,13 +639,13 @@ public:
}
virtual sal_Bool SAL_CALL hasChildNodes()
- throw ( RuntimeException, std::exception )
+ throw ( RuntimeException, std::exception ) SAL_OVERRIDE
{
return sal_True; // will always be user and share
}
virtual sal_Int16 SAL_CALL getType()
- throw ( RuntimeException, std::exception )
+ throw ( RuntimeException, std::exception ) SAL_OVERRIDE
{
return browse::BrowseNodeTypes::CONTAINER;
}