summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/file/filcmd.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-06-23 11:37:33 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-06-23 10:57:45 +0000
commit5bd5baff3f2a55bc2d84e1e352a00dd6969394e3 (patch)
treeee80e3ac5c98bd1321e5a3e79f0f93f5bb09f745 /ucb/source/ucp/file/filcmd.cxx
parentd43f4390e006716ca538ad92d09bd012179efd66 (diff)
remove some more (void) style function definitions/declarations
found with git grep -nP '^\s*void\s*\)' Change-Id: I1206031cf957cb6f957cae64ec5cae1280bda694 Reviewed-on: https://gerrit.libreoffice.org/26590 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'ucb/source/ucp/file/filcmd.cxx')
-rw-r--r--ucb/source/ucp/file/filcmd.cxx12
1 files changed, 4 insertions, 8 deletions
diff --git a/ucb/source/ucp/file/filcmd.cxx b/ucb/source/ucp/file/filcmd.cxx
index 4487a3d56f20..09c8e8a2fa77 100644
--- a/ucb/source/ucp/file/filcmd.cxx
+++ b/ucb/source/ucp/file/filcmd.cxx
@@ -42,8 +42,7 @@ XCommandInfo_impl::~XCommandInfo_impl()
void SAL_CALL
-XCommandInfo_impl::acquire(
- void )
+XCommandInfo_impl::acquire()
throw()
{
OWeakObject::acquire();
@@ -51,8 +50,7 @@ XCommandInfo_impl::acquire(
void SAL_CALL
-XCommandInfo_impl::release(
- void )
+XCommandInfo_impl::release()
throw()
{
OWeakObject::release();
@@ -60,8 +58,7 @@ XCommandInfo_impl::release(
uno::Any SAL_CALL
-XCommandInfo_impl::queryInterface(
- const uno::Type& rType )
+XCommandInfo_impl::queryInterface( const uno::Type& rType )
throw( uno::RuntimeException, std::exception )
{
uno::Any aRet = cppu::queryInterface( rType,
@@ -71,8 +68,7 @@ XCommandInfo_impl::queryInterface(
uno::Sequence< CommandInfo > SAL_CALL
-XCommandInfo_impl::getCommands(
- void )
+XCommandInfo_impl::getCommands()
throw( uno::RuntimeException, std::exception )
{
return m_pMyShell->m_sCommandInfo;