summaryrefslogtreecommitdiff
path: root/extensions/source/config/ldap/ldapaccess.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/source/config/ldap/ldapaccess.hxx')
-rw-r--r--extensions/source/config/ldap/ldapaccess.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/extensions/source/config/ldap/ldapaccess.hxx b/extensions/source/config/ldap/ldapaccess.hxx
index 16d512863e0d..b0c308c0e78f 100644
--- a/extensions/source/config/ldap/ldapaccess.hxx
+++ b/extensions/source/config/ldap/ldapaccess.hxx
@@ -79,9 +79,9 @@ class LdapConnection
public:
/** Default constructor */
- LdapConnection(void) : mConnection(NULL),mLdapDefinition() {}
+ LdapConnection() : mConnection(NULL),mLdapDefinition() {}
/** Destructor, releases the connection */
- ~LdapConnection(void) ;
+ ~LdapConnection() ;
/** Make connection to LDAP server */
void connectSimple(const LdapDefinition& aDefinition)
throw (ldap::LdapConnectionException,
@@ -118,7 +118,7 @@ private:
Indicates whether the connection is in a valid state.
@return sal_True if connection is valid, sal_False otherwise
*/
- bool isValid(void) const { return mConnection != NULL ; }
+ bool isValid() const { return mConnection != NULL ; }
void connectSimple()
throw (ldap::LdapConnectionException,