diff options
author | Alexander Bergmann <myaddons@gmx.de> | 2012-01-26 16:00:09 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2012-01-26 17:41:07 +0000 |
commit | 0439af27e1f37b19d4409f34f974d6ade49f99bf (patch) | |
tree | 13bbb2549319d74a1a109bf2727aab37dca5b8c7 /stoc/test | |
parent | f1cb0a4ab4f11dc015be1696c7c7751802171915 (diff) |
Code cleanup: ( () ) replaced by (())
Diffstat (limited to 'stoc/test')
-rw-r--r-- | stoc/test/security/test_security.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/stoc/test/security/test_security.cxx b/stoc/test/security/test_security.cxx index 08ecd5b17762..b8809dea0885 100644 --- a/stoc/test/security/test_security.cxx +++ b/stoc/test/security/test_security.cxx @@ -56,7 +56,7 @@ using namespace ::com::sun::star; using namespace ::com::sun::star::uno; //-------------------------------------------------------------------------------------------------- -static OUString localhost( OUString const & addition ) SAL_THROW( () ) +static OUString localhost( OUString const & addition ) SAL_THROW(()) { static OUString ip; if (! ip.getLength()) @@ -97,7 +97,7 @@ public: inline user_CurrentContext( Reference< XCurrentContext > const & xDelegate, OUString const & userId ) - SAL_THROW( () ) + SAL_THROW(()) : m_refcount( 0 ) , m_xDelegate( xDelegate ) , m_userId( makeAny( userId ) ) @@ -371,7 +371,7 @@ class acc_Restr Any m_perm; public: - inline acc_Restr( Any const & perm = Any() ) SAL_THROW( () ) + inline acc_Restr( Any const & perm = Any() ) SAL_THROW(()) : m_perm( perm ) {} @@ -401,7 +401,7 @@ class Action Any m_arg; public: - inline Action( t_action action, AccessControl & ac, Any const & arg = Any() ) SAL_THROW( () ) + inline Action( t_action action, AccessControl & ac, Any const & arg = Any() ) SAL_THROW(()) : m_action( action ) , m_ac( ac ) , m_arg( arg ) |