summaryrefslogtreecommitdiff
path: root/xmlhelp/source/cxxhelp/provider/resultsetbase.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 /xmlhelp/source/cxxhelp/provider/resultsetbase.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 'xmlhelp/source/cxxhelp/provider/resultsetbase.cxx')
-rw-r--r--xmlhelp/source/cxxhelp/provider/resultsetbase.cxx75
1 files changed, 25 insertions, 50 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/resultsetbase.cxx b/xmlhelp/source/cxxhelp/provider/resultsetbase.cxx
index c6d2ec669391..8046a771bb4b 100644
--- a/xmlhelp/source/cxxhelp/provider/resultsetbase.cxx
+++ b/xmlhelp/source/cxxhelp/provider/resultsetbase.cxx
@@ -57,8 +57,7 @@ ResultSetBase::~ResultSetBase()
// XInterface
void SAL_CALL
-ResultSetBase::acquire(
- void )
+ResultSetBase::acquire()
throw()
{
OWeakObject::acquire();
@@ -66,8 +65,7 @@ ResultSetBase::acquire(
void SAL_CALL
-ResultSetBase::release(
- void )
+ResultSetBase::release()
throw()
{
OWeakObject::release();
@@ -75,8 +73,7 @@ ResultSetBase::release(
uno::Any SAL_CALL
-ResultSetBase::queryInterface(
- const uno::Type& rType )
+ResultSetBase::queryInterface( const uno::Type& rType )
throw( uno::RuntimeException, std::exception )
{
uno::Any aRet = cppu::queryInterface( rType,
@@ -147,8 +144,7 @@ ResultSetBase::dispose()
// XResultSet
sal_Bool SAL_CALL
-ResultSetBase::next(
- void )
+ResultSetBase::next()
throw( sdbc::SQLException,
uno::RuntimeException, std::exception )
{
@@ -163,8 +159,7 @@ ResultSetBase::next(
sal_Bool SAL_CALL
-ResultSetBase::isBeforeFirst(
- void )
+ResultSetBase::isBeforeFirst()
throw( sdbc::SQLException,
uno::RuntimeException, std::exception )
{
@@ -173,8 +168,7 @@ ResultSetBase::isBeforeFirst(
sal_Bool SAL_CALL
-ResultSetBase::isAfterLast(
- void )
+ResultSetBase::isAfterLast()
throw( sdbc::SQLException,
uno::RuntimeException, std::exception )
{
@@ -183,8 +177,7 @@ ResultSetBase::isAfterLast(
sal_Bool SAL_CALL
-ResultSetBase::isFirst(
- void )
+ResultSetBase::isFirst()
throw( sdbc::SQLException,
uno::RuntimeException, std::exception )
{
@@ -193,8 +186,7 @@ ResultSetBase::isFirst(
sal_Bool SAL_CALL
-ResultSetBase::isLast(
- void )
+ResultSetBase::isLast()
throw( sdbc::SQLException,
uno::RuntimeException, std::exception)
{
@@ -206,8 +198,7 @@ ResultSetBase::isLast(
void SAL_CALL
-ResultSetBase::beforeFirst(
- void )
+ResultSetBase::beforeFirst()
throw( sdbc::SQLException,
uno::RuntimeException, std::exception)
{
@@ -216,8 +207,7 @@ ResultSetBase::beforeFirst(
void SAL_CALL
-ResultSetBase::afterLast(
- void )
+ResultSetBase::afterLast()
throw( sdbc::SQLException,
uno::RuntimeException, std::exception )
{
@@ -226,8 +216,7 @@ ResultSetBase::afterLast(
sal_Bool SAL_CALL
-ResultSetBase::first(
- void )
+ResultSetBase::first()
throw( sdbc::SQLException,
uno::RuntimeException, std::exception)
{
@@ -237,8 +226,7 @@ ResultSetBase::first(
sal_Bool SAL_CALL
-ResultSetBase::last(
- void )
+ResultSetBase::last()
throw( sdbc::SQLException,
uno::RuntimeException, std::exception )
{
@@ -248,8 +236,7 @@ ResultSetBase::last(
sal_Int32 SAL_CALL
-ResultSetBase::getRow(
- void )
+ResultSetBase::getRow()
throw( sdbc::SQLException,
uno::RuntimeException, std::exception)
{
@@ -279,8 +266,7 @@ sal_Bool SAL_CALL ResultSetBase::absolute( sal_Int32 row )
sal_Bool SAL_CALL
-ResultSetBase::relative(
- sal_Int32 row )
+ResultSetBase::relative( sal_Int32 row )
throw( sdbc::SQLException,
uno::RuntimeException, std::exception)
{
@@ -299,8 +285,7 @@ ResultSetBase::relative(
sal_Bool SAL_CALL
-ResultSetBase::previous(
- void )
+ResultSetBase::previous()
throw( sdbc::SQLException,
uno::RuntimeException, std::exception)
{
@@ -313,8 +298,7 @@ ResultSetBase::previous(
void SAL_CALL
-ResultSetBase::refreshRow(
- void )
+ResultSetBase::refreshRow()
throw( sdbc::SQLException,
uno::RuntimeException, std::exception)
{
@@ -322,8 +306,7 @@ ResultSetBase::refreshRow(
sal_Bool SAL_CALL
-ResultSetBase::rowUpdated(
- void )
+ResultSetBase::rowUpdated()
throw( sdbc::SQLException,
uno::RuntimeException, std::exception )
{
@@ -331,8 +314,7 @@ ResultSetBase::rowUpdated(
}
sal_Bool SAL_CALL
-ResultSetBase::rowInserted(
- void )
+ResultSetBase::rowInserted()
throw( sdbc::SQLException,
uno::RuntimeException, std::exception )
{
@@ -340,8 +322,7 @@ ResultSetBase::rowInserted(
}
sal_Bool SAL_CALL
-ResultSetBase::rowDeleted(
- void )
+ResultSetBase::rowDeleted()
throw( sdbc::SQLException,
uno::RuntimeException, std::exception )
{
@@ -350,8 +331,7 @@ ResultSetBase::rowDeleted(
uno::Reference< uno::XInterface > SAL_CALL
-ResultSetBase::getStatement(
- void )
+ResultSetBase::getStatement()
throw( sdbc::SQLException,
uno::RuntimeException, std::exception )
{
@@ -363,8 +343,7 @@ ResultSetBase::getStatement(
// XCloseable
void SAL_CALL
-ResultSetBase::close(
- void )
+ResultSetBase::close()
throw( sdbc::SQLException,
uno::RuntimeException, std::exception)
{
@@ -372,8 +351,7 @@ ResultSetBase::close(
OUString SAL_CALL
-ResultSetBase::queryContentIdentifierString(
- void )
+ResultSetBase::queryContentIdentifierString()
throw( uno::RuntimeException, std::exception )
{
if( 0 <= m_nRow && sal::static_int_cast<sal_uInt32>( m_nRow ) < m_aItems.size() )
@@ -384,8 +362,7 @@ ResultSetBase::queryContentIdentifierString(
uno::Reference< ucb::XContentIdentifier > SAL_CALL
-ResultSetBase::queryContentIdentifier(
- void )
+ResultSetBase::queryContentIdentifier()
throw( uno::RuntimeException, std::exception )
{
if( 0 <= m_nRow && sal::static_int_cast<sal_uInt32>( m_nRow ) < m_aItems.size() )
@@ -401,8 +378,7 @@ ResultSetBase::queryContentIdentifier(
uno::Reference< ucb::XContent > SAL_CALL
-ResultSetBase::queryContent(
- void )
+ResultSetBase::queryContent()
throw( uno::RuntimeException, std::exception )
{
if( 0 <= m_nRow && sal::static_int_cast<sal_uInt32>( m_nRow ) < m_aItems.size() )
@@ -613,8 +589,7 @@ void SAL_CALL ResultSetBase::removeVetoableChangeListener(
// XResultSetMetaDataSupplier
uno::Reference< sdbc::XResultSetMetaData > SAL_CALL
-ResultSetBase::getMetaData(
- void )
+ResultSetBase::getMetaData()
throw( sdbc::SQLException,
uno::RuntimeException, std::exception )
{