summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/ftp
diff options
context:
space:
mode:
Diffstat (limited to 'ucb/source/ucp/ftp')
-rw-r--r--ucb/source/ucp/ftp/ftpcontentidentifier.cxx4
-rw-r--r--ucb/source/ucp/ftp/ftpcontentidentifier.hxx4
-rw-r--r--ucb/source/ucp/ftp/ftpdirp.hxx4
-rw-r--r--ucb/source/ucp/ftp/ftpresultsetbase.cxx4
-rw-r--r--ucb/source/ucp/ftp/ftpurl.hxx2
5 files changed, 9 insertions, 9 deletions
diff --git a/ucb/source/ucp/ftp/ftpcontentidentifier.cxx b/ucb/source/ucp/ftp/ftpcontentidentifier.cxx
index 6e7d15e036b7..b492c5d582c5 100644
--- a/ucb/source/ucp/ftp/ftpcontentidentifier.cxx
+++ b/ucb/source/ucp/ftp/ftpcontentidentifier.cxx
@@ -62,12 +62,12 @@ FTPContentIdentifier::queryInterface(
}
-void SAL_CALL FTPContentIdentifier::acquire( void ) throw() {
+void SAL_CALL FTPContentIdentifier::acquire() throw() {
OWeakObject::acquire();
}
-void SAL_CALL FTPContentIdentifier::release( void ) throw() {
+void SAL_CALL FTPContentIdentifier::release() throw() {
OWeakObject::release();
}
diff --git a/ucb/source/ucp/ftp/ftpcontentidentifier.hxx b/ucb/source/ucp/ftp/ftpcontentidentifier.hxx
index 6ec021c23347..e08eae7b957b 100644
--- a/ucb/source/ucp/ftp/ftpcontentidentifier.hxx
+++ b/ucb/source/ucp/ftp/ftpcontentidentifier.hxx
@@ -56,9 +56,9 @@ namespace ftp {
queryInterface( const com::sun::star::uno::Type& rType )
throw( com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
- virtual void SAL_CALL acquire( void ) throw() SAL_OVERRIDE;
+ virtual void SAL_CALL acquire() throw() SAL_OVERRIDE;
- virtual void SAL_CALL release( void ) throw() SAL_OVERRIDE;
+ virtual void SAL_CALL release() throw() SAL_OVERRIDE;
// XTypeProvider
diff --git a/ucb/source/ucp/ftp/ftpdirp.hxx b/ucb/source/ucp/ftp/ftpdirp.hxx
index c306989b838e..676a5064a35c 100644
--- a/ucb/source/ucp/ftp/ftpdirp.hxx
+++ b/ucb/source/ucp/ftp/ftpdirp.hxx
@@ -67,7 +67,7 @@ namespace ftp {
void SetSec(sal_uInt16 seconds) { Seconds = seconds; }
void SetNanoSec(sal_uInt32 nanoSec) { NanoSeconds = nanoSec; }
- sal_uInt16 GetMonth(void) { return Month; }
+ sal_uInt16 GetMonth() { return Month; }
};
@@ -92,7 +92,7 @@ namespace ftp {
sal_uInt32 m_nMode;
sal_uInt32 m_nSize;
- FTPDirentry(void)
+ FTPDirentry()
: m_aDate(0,0,0,0,0,0,0),
m_nMode(INETCOREFTP_FILEMODE_UNKNOWN),
m_nSize((sal_uInt32)(-1)) { }
diff --git a/ucb/source/ucp/ftp/ftpresultsetbase.cxx b/ucb/source/ucp/ftp/ftpresultsetbase.cxx
index a1ed5f7aab07..ba9f331c7150 100644
--- a/ucb/source/ucp/ftp/ftpresultsetbase.cxx
+++ b/ucb/source/ucp/ftp/ftpresultsetbase.cxx
@@ -442,14 +442,14 @@ public:
{
}
- void SAL_CALL acquire( void )
+ void SAL_CALL acquire()
throw() SAL_OVERRIDE
{
OWeakObject::acquire();
}
- void SAL_CALL release( void )
+ void SAL_CALL release()
throw() SAL_OVERRIDE
{
OWeakObject::release();
diff --git a/ucb/source/ucp/ftp/ftpurl.hxx b/ucb/source/ucp/ftp/ftpurl.hxx
index 496c1768a2c7..ecb88416a0ea 100644
--- a/ucb/source/ucp/ftp/ftpurl.hxx
+++ b/ucb/source/ucp/ftp/ftpurl.hxx
@@ -115,7 +115,7 @@ namespace ftp {
void child(const OUString& title);
/** returns the unencoded title */
- OUString child(void) const;
+ OUString child() const;
std::vector<FTPDirentry> list(sal_Int16 nMode) const
throw(curl_exception);