summaryrefslogtreecommitdiff
path: root/extensions/source
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/source')
-rw-r--r--extensions/source/abpilot/unodialogabp.hxx4
-rw-r--r--extensions/source/activex/so_activex.cxx6
-rw-r--r--extensions/source/bibliography/bibload.cxx28
-rw-r--r--extensions/source/bibliography/bibshortcuthandler.hxx4
-rw-r--r--extensions/source/bibliography/general.cxx2
-rw-r--r--extensions/source/bibliography/general.hxx2
-rw-r--r--extensions/source/config/ldap/ldapaccess.hxx6
-rw-r--r--extensions/source/config/ldap/ldapuserprofilebe.cxx8
-rw-r--r--extensions/source/config/ldap/ldapuserprofilebe.hxx6
-rw-r--r--extensions/source/dbpilots/unoautopilot.hxx4
-rw-r--r--extensions/source/ole/oleobjw.cxx2
-rw-r--r--extensions/source/plugin/base/manager.cxx4
-rw-r--r--extensions/source/plugin/base/plctrl.cxx6
-rw-r--r--extensions/source/plugin/base/plmodel.cxx4
-rw-r--r--extensions/source/plugin/base/xplugin.cxx2
-rw-r--r--extensions/source/plugin/inc/plugin/impl.hxx4
-rw-r--r--extensions/source/plugin/inc/plugin/model.hxx2
-rw-r--r--extensions/source/plugin/inc/plugin/plctrl.hxx8
-rw-r--r--extensions/source/propctrlr/MasterDetailLinkDialog.hxx4
-rw-r--r--extensions/source/propctrlr/controlfontdialog.hxx4
-rw-r--r--extensions/source/propctrlr/pcrunodialogs.hxx4
-rw-r--r--extensions/source/propctrlr/taborder.cxx6
-rw-r--r--extensions/source/update/ui/updatecheckui.cxx4
23 files changed, 62 insertions, 62 deletions
diff --git a/extensions/source/abpilot/unodialogabp.hxx b/extensions/source/abpilot/unodialogabp.hxx
index ff58b6e9a456..b444095823a5 100644
--- a/extensions/source/abpilot/unodialogabp.hxx
+++ b/extensions/source/abpilot/unodialogabp.hxx
@@ -63,8 +63,8 @@ namespace abp
virtual ::comphelper::StringSequence SAL_CALL getSupportedServiceNames() throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
// XServiceInfo - static methods
- static ::com::sun::star::uno::Sequence< OUString > getSupportedServiceNames_Static(void) throw( ::com::sun::star::uno::RuntimeException );
- static OUString getImplementationName_Static(void) throw( ::com::sun::star::uno::RuntimeException );
+ static ::com::sun::star::uno::Sequence< OUString > getSupportedServiceNames_Static() throw( ::com::sun::star::uno::RuntimeException );
+ static OUString getImplementationName_Static() throw( ::com::sun::star::uno::RuntimeException );
static ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >
SAL_CALL Create(const ::com::sun::star::uno::Reference< com::sun::star::lang::XMultiServiceFactory >&);
diff --git a/extensions/source/activex/so_activex.cxx b/extensions/source/activex/so_activex.cxx
index d460bc6aa984..45c9174610c4 100644
--- a/extensions/source/activex/so_activex.cxx
+++ b/extensions/source/activex/so_activex.cxx
@@ -90,7 +90,7 @@ BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID /*lpReserved*/)
// Used to determine whether the DLL can be unloaded by OLE
-STDAPI DllCanUnloadNow(void)
+STDAPI DllCanUnloadNow()
{
return (_Module.GetLockCount()==0) ? S_OK : S_FALSE;
}
@@ -658,7 +658,7 @@ STDAPI DllUnregisterServerDoc( int nMode, BOOL bForAllUsers, BOOL bFor64Bit )
// DllRegisterServer - regsvr32 entry point
-STDAPI DllRegisterServer( void )
+STDAPI DllRegisterServer()
{
char pProgramPath[1024];
HRESULT aResult = E_FAIL;
@@ -691,7 +691,7 @@ STDAPI DllRegisterServer( void )
// DllUnregisterServer - regsvr32 entry point
-STDAPI DllUnregisterServer( void )
+STDAPI DllUnregisterServer()
{
DllUnregisterServerDoc( 63, FALSE, bX64 );
DllUnregisterServerNative( 63, FALSE, bX64 );
diff --git a/extensions/source/bibliography/bibload.cxx b/extensions/source/bibliography/bibload.cxx
index 98016ca29009..9cb50420584d 100644
--- a/extensions/source/bibliography/bibload.cxx
+++ b/extensions/source/bibliography/bibload.cxx
@@ -99,7 +99,7 @@ public:
// XServiceInfo
OUString SAL_CALL getImplementationName() throw(std::exception ) SAL_OVERRIDE;
sal_Bool SAL_CALL supportsService(const OUString& ServiceName) throw(std::exception ) SAL_OVERRIDE;
- Sequence< OUString > SAL_CALL getSupportedServiceNames(void) throw(std::exception ) SAL_OVERRIDE;
+ Sequence< OUString > SAL_CALL getSupportedServiceNames() throw(std::exception ) SAL_OVERRIDE;
static OUString getImplementationName_Static() throw( )
{
@@ -110,15 +110,15 @@ public:
//XNameAccess
virtual Any SAL_CALL getByName(const OUString& aName) throw ( NoSuchElementException, WrappedTargetException, RuntimeException, std::exception ) SAL_OVERRIDE;
- virtual Sequence< OUString > SAL_CALL getElementNames(void) throw ( RuntimeException, std::exception ) SAL_OVERRIDE;
+ virtual Sequence< OUString > SAL_CALL getElementNames() throw ( RuntimeException, std::exception ) SAL_OVERRIDE;
virtual sal_Bool SAL_CALL hasByName(const OUString& aName) throw ( RuntimeException, std::exception ) SAL_OVERRIDE;
//XElementAccess
- virtual Type SAL_CALL getElementType(void) throw ( RuntimeException, std::exception ) SAL_OVERRIDE;
- virtual sal_Bool SAL_CALL hasElements(void) throw ( RuntimeException, std::exception ) SAL_OVERRIDE;
+ virtual Type SAL_CALL getElementType() throw ( RuntimeException, std::exception ) SAL_OVERRIDE;
+ virtual sal_Bool SAL_CALL hasElements() throw ( RuntimeException, std::exception ) SAL_OVERRIDE;
//XPropertySet
- virtual Reference< XPropertySetInfo > SAL_CALL getPropertySetInfo(void) throw ( RuntimeException, std::exception ) SAL_OVERRIDE;
+ virtual Reference< XPropertySetInfo > SAL_CALL getPropertySetInfo() throw ( RuntimeException, std::exception ) SAL_OVERRIDE;
virtual void SAL_CALL setPropertyValue(const OUString& PropertyName, const Any& aValue) throw( UnknownPropertyException, PropertyVetoException, IllegalArgumentException, WrappedTargetException, RuntimeException, std::exception ) SAL_OVERRIDE;
virtual Any SAL_CALL getPropertyValue(const OUString& PropertyName) throw ( UnknownPropertyException, WrappedTargetException, RuntimeException, std::exception ) SAL_OVERRIDE;
virtual void SAL_CALL addPropertyChangeListener(const OUString& PropertyName, const Reference< XPropertyChangeListener > & aListener) throw( UnknownPropertyException, WrappedTargetException, RuntimeException, std::exception ) SAL_OVERRIDE;
@@ -126,7 +126,7 @@ public:
virtual void SAL_CALL addVetoableChangeListener(const OUString& PropertyName, const Reference< XVetoableChangeListener > & aListener) throw( UnknownPropertyException, WrappedTargetException, RuntimeException, std::exception ) SAL_OVERRIDE;
virtual void SAL_CALL removeVetoableChangeListener(const OUString& PropertyName, const Reference< XVetoableChangeListener > & aListener) throw( UnknownPropertyException, WrappedTargetException, RuntimeException, std::exception ) SAL_OVERRIDE;
- static Sequence<OUString> SAL_CALL getSupportedServiceNames_Static(void) throw( );
+ static Sequence<OUString> SAL_CALL getSupportedServiceNames_Static() throw( );
friend Reference< XInterface > SAL_CALL BibliographyLoader_CreateInstance( const Reference< XMultiServiceFactory > & rSMgr ) throw( Exception );
@@ -134,7 +134,7 @@ public:
virtual void SAL_CALL load(const Reference< XFrame > & aFrame, const OUString& aURL,
const Sequence< PropertyValue >& aArgs,
const Reference< XLoadEventListener > & aListener) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
- virtual void SAL_CALL cancel(void) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual void SAL_CALL cancel() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
};
BibliographyLoader::BibliographyLoader() :
@@ -173,13 +173,13 @@ sal_Bool BibliographyLoader::supportsService(const OUString& ServiceName) throw(
}
// XServiceInfo
-Sequence< OUString > BibliographyLoader::getSupportedServiceNames(void) throw(std::exception )
+Sequence< OUString > BibliographyLoader::getSupportedServiceNames() throw(std::exception )
{
return getSupportedServiceNames_Static();
}
// ORegistryServiceManager_Static
-Sequence< OUString > BibliographyLoader::getSupportedServiceNames_Static(void) throw( )
+Sequence< OUString > BibliographyLoader::getSupportedServiceNames_Static() throw( )
{
Sequence< OUString > aSNS( 2 );
aSNS.getArray()[0] = "com.sun.star.frame.FrameLoader";
@@ -213,7 +213,7 @@ extern "C"
}
-void BibliographyLoader::cancel(void) throw (::com::sun::star::uno::RuntimeException, std::exception)
+void BibliographyLoader::cancel() throw (::com::sun::star::uno::RuntimeException, std::exception)
{
//!
//!
@@ -498,7 +498,7 @@ Any BibliographyLoader::getByName(const OUString& rName) throw
return aRet;
}
-Sequence< OUString > BibliographyLoader::getElementNames(void) throw ( RuntimeException, std::exception )
+Sequence< OUString > BibliographyLoader::getElementNames() throw ( RuntimeException, std::exception )
{
Sequence< OUString > aRet(10);
int nRealNameCount = 0;
@@ -562,19 +562,19 @@ sal_Bool BibliographyLoader::hasByName(const OUString& rName) throw ( RuntimeExc
return bRet;
}
-Type BibliographyLoader::getElementType(void) throw ( RuntimeException, std::exception )
+Type BibliographyLoader::getElementType() throw ( RuntimeException, std::exception )
{
return cppu::UnoType<Sequence<PropertyValue>>::get();
}
-sal_Bool BibliographyLoader::hasElements(void) throw ( RuntimeException, std::exception )
+sal_Bool BibliographyLoader::hasElements() throw ( RuntimeException, std::exception )
{
Reference< XResultSet > xCursor = GetDataCursor();
Reference< XNameAccess > xColumns = GetDataColumns();
return xColumns.is() && (xColumns->getElementNames().getLength() != 0);
}
-Reference< XPropertySetInfo > BibliographyLoader::getPropertySetInfo(void) throw
+Reference< XPropertySetInfo > BibliographyLoader::getPropertySetInfo() throw
( RuntimeException, std::exception )
{
static const SfxItemPropertyMapEntry aBibProps_Impl[] =
diff --git a/extensions/source/bibliography/bibshortcuthandler.hxx b/extensions/source/bibliography/bibshortcuthandler.hxx
index f8c87f395fb5..45bf279df404 100644
--- a/extensions/source/bibliography/bibshortcuthandler.hxx
+++ b/extensions/source/bibliography/bibshortcuthandler.hxx
@@ -40,14 +40,14 @@ public:
virtual ~BibShortCutHandler();
virtual bool HandleShortCutKey( const KeyEvent& rKeyEvent ); // returns true, if key was handled
- inline vcl::Window* GetWindow( void );
+ inline vcl::Window* GetWindow();
};
inline BibShortCutHandler::BibShortCutHandler( vcl::Window* _pBaseClass ) : pBaseClass( _pBaseClass )
{
}
-inline vcl::Window* BibShortCutHandler::GetWindow( void )
+inline vcl::Window* BibShortCutHandler::GetWindow()
{
return pBaseClass;
}
diff --git a/extensions/source/bibliography/general.cxx b/extensions/source/bibliography/general.cxx
index 02764e4e5816..238b1606d1e6 100644
--- a/extensions/source/bibliography/general.cxx
+++ b/extensions/source/bibliography/general.cxx
@@ -482,7 +482,7 @@ uno::Reference< awt::XControlModel > BibGeneralPage::AddXControl(
return xCtrModel;
}
-void BibGeneralPage::InitFixedTexts( void )
+void BibGeneralPage::InitFixedTexts()
{
aFixedTexts[0] = pIdentifierFT;
aFixedTexts[1] = pAuthTypeFT;
diff --git a/extensions/source/bibliography/general.hxx b/extensions/source/bibliography/general.hxx
index 0b89c0ea322e..2c0c17aaf5fe 100644
--- a/extensions/source/bibliography/general.hxx
+++ b/extensions/source/bibliography/general.hxx
@@ -125,7 +125,7 @@ class BibGeneralPage: public BibGeneralPageBaseClass, public BibTabPage
const OString& sHelpId, sal_uInt16 nIndexInFTArray, std::vector<vcl::Window*>& rChildren );
protected:
- void InitFixedTexts( void ); // create mnemonics and set text an all fixed texts
+ void InitFixedTexts(); // create mnemonics and set text an all fixed texts
public:
BibGeneralPage(vcl::Window* pParent, BibDataManager* pDatMan);
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,
diff --git a/extensions/source/config/ldap/ldapuserprofilebe.cxx b/extensions/source/config/ldap/ldapuserprofilebe.cxx
index 4d53c39c8572..dfb8a60f7c13 100644
--- a/extensions/source/config/ldap/ldapuserprofilebe.cxx
+++ b/extensions/source/config/ldap/ldapuserprofilebe.cxx
@@ -212,19 +212,19 @@ css::uno::Any LdapUserProfileBe::getPropertyValue(
}
-OUString SAL_CALL LdapUserProfileBe::getLdapUserProfileBeName(void) {
+OUString SAL_CALL LdapUserProfileBe::getLdapUserProfileBeName() {
return OUString("com.sun.star.comp.configuration.backend.LdapUserProfileBe");
}
-OUString SAL_CALL LdapUserProfileBe::getImplementationName(void)
+OUString SAL_CALL LdapUserProfileBe::getImplementationName()
throw (uno::RuntimeException, std::exception)
{
return getLdapUserProfileBeName() ;
}
-uno::Sequence<OUString> SAL_CALL LdapUserProfileBe::getLdapUserProfileBeServiceNames(void)
+uno::Sequence<OUString> SAL_CALL LdapUserProfileBe::getLdapUserProfileBeServiceNames()
{
uno::Sequence<OUString> aServices(1) ;
aServices[0] = "com.sun.star.configuration.backend.LdapUserProfileBe";
@@ -238,7 +238,7 @@ sal_Bool SAL_CALL LdapUserProfileBe::supportsService(const OUString& aServiceNam
}
uno::Sequence<OUString>
-SAL_CALL LdapUserProfileBe::getSupportedServiceNames(void)
+SAL_CALL LdapUserProfileBe::getSupportedServiceNames()
throw (uno::RuntimeException, std::exception)
{
return getLdapUserProfileBeServiceNames() ;
diff --git a/extensions/source/config/ldap/ldapuserprofilebe.hxx b/extensions/source/config/ldap/ldapuserprofilebe.hxx
index 56f6155db466..983f833466b0 100644
--- a/extensions/source/config/ldap/ldapuserprofilebe.hxx
+++ b/extensions/source/config/ldap/ldapuserprofilebe.hxx
@@ -55,7 +55,7 @@ class LdapUserProfileBe : private LdapProfileMutexHolder, public BackendBase
public :
LdapUserProfileBe(const uno::Reference<uno::XComponentContext>& xContext);
- virtual ~LdapUserProfileBe(void) ;
+ virtual ~LdapUserProfileBe() ;
// XServiceInfo
virtual OUString SAL_CALL
@@ -125,13 +125,13 @@ class LdapUserProfileBe : private LdapProfileMutexHolder, public BackendBase
Provides the implementation name.
@return implementation name
*/
- static OUString SAL_CALL getLdapUserProfileBeName(void) ;
+ static OUString SAL_CALL getLdapUserProfileBeName() ;
/**
Provides the supported services names
@return service names
*/
static uno::Sequence<OUString> SAL_CALL
- getLdapUserProfileBeServiceNames(void) ;
+ getLdapUserProfileBeServiceNames() ;
private:
/** Check if LDAP is configured */
diff --git a/extensions/source/dbpilots/unoautopilot.hxx b/extensions/source/dbpilots/unoautopilot.hxx
index d176321acacf..c70597fca7d5 100644
--- a/extensions/source/dbpilots/unoautopilot.hxx
+++ b/extensions/source/dbpilots/unoautopilot.hxx
@@ -71,8 +71,8 @@ namespace dbp
virtual ::comphelper::StringSequence SAL_CALL getSupportedServiceNames() throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
// XServiceInfo - static methods
- static ::com::sun::star::uno::Sequence< OUString > getSupportedServiceNames_Static(void) throw( ::com::sun::star::uno::RuntimeException );
- static OUString getImplementationName_Static(void) throw( ::com::sun::star::uno::RuntimeException );
+ static ::com::sun::star::uno::Sequence< OUString > getSupportedServiceNames_Static() throw( ::com::sun::star::uno::RuntimeException );
+ static OUString getImplementationName_Static() throw( ::com::sun::star::uno::RuntimeException );
static ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >
SAL_CALL Create(const ::com::sun::star::uno::Reference< com::sun::star::lang::XMultiServiceFactory >&);
diff --git a/extensions/source/ole/oleobjw.cxx b/extensions/source/ole/oleobjw.cxx
index b5560fcfc16a..01f8aa368596 100644
--- a/extensions/source/ole/oleobjw.cxx
+++ b/extensions/source/ole/oleobjw.cxx
@@ -154,7 +154,7 @@ Any IUnknownWrapper_Impl::queryInterface(const Type& t)
XInitialization, XAutomationObject, XDefaultProperty, XDefaultMethod, XDirectInvocation, XAutomationInvocation >::queryInterface(t);
}
-Reference<XIntrospectionAccess> SAL_CALL IUnknownWrapper_Impl::getIntrospection(void)
+Reference<XIntrospectionAccess> SAL_CALL IUnknownWrapper_Impl::getIntrospection()
throw (RuntimeException )
{
Reference<XIntrospectionAccess> ret;
diff --git a/extensions/source/plugin/base/manager.cxx b/extensions/source/plugin/base/manager.cxx
index 0b91202befde..84d45719d4c6 100644
--- a/extensions/source/plugin/base/manager.cxx
+++ b/extensions/source/plugin/base/manager.cxx
@@ -120,13 +120,13 @@ sal_Bool XPluginManager_Impl::supportsService(const OUString& ServiceName) throw
}
// ::com::sun::star::lang::XServiceInfo
-Sequence< OUString > XPluginManager_Impl::getSupportedServiceNames(void) throw( )
+Sequence< OUString > XPluginManager_Impl::getSupportedServiceNames() throw( )
{
return getSupportedServiceNames_Static();
}
// XPluginManager_Impl
-Sequence< OUString > XPluginManager_Impl::getSupportedServiceNames_Static(void) throw( )
+Sequence< OUString > XPluginManager_Impl::getSupportedServiceNames_Static() throw( )
{
Sequence< OUString > aSNS( 1 );
aSNS[0] = "com.sun.star.plugin.PluginManager";
diff --git a/extensions/source/plugin/base/plctrl.cxx b/extensions/source/plugin/base/plctrl.cxx
index b8973e0ec8f0..6ad9fdd5aa5b 100644
--- a/extensions/source/plugin/base/plctrl.cxx
+++ b/extensions/source/plugin/base/plctrl.cxx
@@ -77,7 +77,7 @@ void PluginControl_Impl::removeEventListener( const Reference< ::com::sun::star:
}
//---- ::com::sun::star::lang::XComponent ----------------------------------------------------------------------------------
-void PluginControl_Impl::dispose(void)
+void PluginControl_Impl::dispose()
throw( RuntimeException, std::exception )
{
// send disposing events
@@ -106,7 +106,7 @@ void PluginControl_Impl::setPosSize( sal_Int32 nX_, sal_Int32 nY_, sal_Int32 nWi
}
//---- ::com::sun::star::awt::XWindow -------------------------------------------------------------------------------------
-::com::sun::star::awt::Rectangle PluginControl_Impl::getPosSize(void)
+::com::sun::star::awt::Rectangle PluginControl_Impl::getPosSize()
throw( RuntimeException, std::exception )
{
return _xPeerWindow->getPosSize();
@@ -131,7 +131,7 @@ void PluginControl_Impl::setEnable( sal_Bool bEnable )
}
//---- ::com::sun::star::awt::XWindow -------------------------------------------------------------------------------------
-void PluginControl_Impl::setFocus(void) throw( RuntimeException, std::exception )
+void PluginControl_Impl::setFocus() throw( RuntimeException, std::exception )
{
if (_xPeerWindow.is())
_xPeerWindow->setFocus();
diff --git a/extensions/source/plugin/base/plmodel.cxx b/extensions/source/plugin/base/plmodel.cxx
index f2c5cc3f650f..8ef83b590cd6 100644
--- a/extensions/source/plugin/base/plmodel.cxx
+++ b/extensions/source/plugin/base/plmodel.cxx
@@ -54,7 +54,7 @@ Any PluginModel::queryAggregation( const Type& type ) throw( RuntimeException, s
// XPluginManager_Impl
-Sequence< OUString > PluginModel::getSupportedServiceNames_Static(void) throw()
+Sequence< OUString > PluginModel::getSupportedServiceNames_Static() throw()
{
Sequence< OUString > aSNS( 1 );
aSNS[0] = "com.sun.star.plugin.PluginModel";
@@ -170,7 +170,7 @@ void PluginModel::removeEventListener( const Reference< ::com::sun::star::lang::
}
//---- ::com::sun::star::lang::XComponent ----------------------------------------------------------------------------------
-void PluginModel::dispose(void) throw(std::exception)
+void PluginModel::dispose() throw(std::exception)
{
// send disposing events
::com::sun::star::lang::EventObject aEvt;
diff --git a/extensions/source/plugin/base/xplugin.cxx b/extensions/source/plugin/base/xplugin.cxx
index cd0ccd56bb98..834b52ec766b 100644
--- a/extensions/source/plugin/base/xplugin.cxx
+++ b/extensions/source/plugin/base/xplugin.cxx
@@ -1170,7 +1170,7 @@ sal_uInt32 PluginInputStream::read( sal_uInt32 offset, sal_Int8* buffer, sal_uIn
return m_aFileStream.Read( buffer, size );
}
-void PluginInputStream::flush(void) throw(std::exception)
+void PluginInputStream::flush() throw(std::exception)
{
}
diff --git a/extensions/source/plugin/inc/plugin/impl.hxx b/extensions/source/plugin/inc/plugin/impl.hxx
index 7ec12f716dec..1df38ee2a574 100644
--- a/extensions/source/plugin/inc/plugin/impl.hxx
+++ b/extensions/source/plugin/inc/plugin/impl.hxx
@@ -316,8 +316,8 @@ public:
virtual sal_Bool SAL_CALL supportsService(const OUString& ServiceName) throw() SAL_OVERRIDE;
virtual OUString SAL_CALL getImplementationName() throw() SAL_OVERRIDE;
- Sequence< OUString > SAL_CALL getSupportedServiceNames(void) throw( ) SAL_OVERRIDE;
- static Sequence< OUString > getSupportedServiceNames_Static(void) throw( );
+ Sequence< OUString > SAL_CALL getSupportedServiceNames() throw( ) SAL_OVERRIDE;
+ static Sequence< OUString > getSupportedServiceNames_Static() throw( );
static OUString getImplementationName_Static() throw( )
{
/** the soplayer uses this name in its source! maybe not after 5.2 */
diff --git a/extensions/source/plugin/inc/plugin/model.hxx b/extensions/source/plugin/inc/plugin/model.hxx
index 4cf7bdd2e1e0..b5ac5477b9fc 100644
--- a/extensions/source/plugin/inc/plugin/model.hxx
+++ b/extensions/source/plugin/inc/plugin/model.hxx
@@ -101,7 +101,7 @@ class PluginModel : public BroadcasterHelperHolder,
// com::sun::star::lang::XTypeProvider
- static Sequence< OUString > SAL_CALL getSupportedServiceNames_Static(void) throw( );
+ static Sequence< OUString > SAL_CALL getSupportedServiceNames_Static() throw( );
static OUString SAL_CALL getImplementationName_Static() throw( )
{
/** the soplayer uses this name in its source! maybe not after 5.2 */
diff --git a/extensions/source/plugin/inc/plugin/plctrl.hxx b/extensions/source/plugin/inc/plugin/plctrl.hxx
index bab35813b453..0684a9a6fe20 100644
--- a/extensions/source/plugin/inc/plugin/plctrl.hxx
+++ b/extensions/source/plugin/inc/plugin/plctrl.hxx
@@ -99,10 +99,10 @@ public:
// ::com::sun::star::awt::XWindow
virtual void SAL_CALL setVisible( sal_Bool bVisible ) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual void SAL_CALL setEnable( sal_Bool bEnable ) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
- virtual void SAL_CALL setFocus(void) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
+ virtual void SAL_CALL setFocus() throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual void SAL_CALL setPosSize( sal_Int32 nX_, sal_Int32 nY_, sal_Int32 nWidth_, sal_Int32 nHeight_, sal_Int16 nFlags ) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
- virtual ::com::sun::star::awt::Rectangle SAL_CALL getPosSize(void) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
+ virtual ::com::sun::star::awt::Rectangle SAL_CALL getPosSize() throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual void SAL_CALL addWindowListener( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindowListener > & l ) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual void SAL_CALL removeWindowListener( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindowListener > & l ) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
@@ -132,10 +132,10 @@ public:
// ::com::sun::star::awt::XView
virtual sal_Bool SAL_CALL setGraphics( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XGraphics > & /*aDevice*/ ) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE
{ return sal_False; }
- virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XGraphics > SAL_CALL getGraphics(void) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE
+ virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XGraphics > SAL_CALL getGraphics() throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE
{ return ::com::sun::star::uno::Reference< ::com::sun::star::awt::XGraphics > (); }
- virtual ::com::sun::star::awt::Size SAL_CALL getSize(void) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE
+ virtual ::com::sun::star::awt::Size SAL_CALL getSize() throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE
{ return ::com::sun::star::awt::Size(_nWidth, _nHeight); }
virtual void SAL_CALL draw( sal_Int32 x, sal_Int32 y ) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
diff --git a/extensions/source/propctrlr/MasterDetailLinkDialog.hxx b/extensions/source/propctrlr/MasterDetailLinkDialog.hxx
index 3ff5f64ec0cf..28a6ddfa7875 100644
--- a/extensions/source/propctrlr/MasterDetailLinkDialog.hxx
+++ b/extensions/source/propctrlr/MasterDetailLinkDialog.hxx
@@ -40,8 +40,8 @@ namespace pcr
MasterDetailLinkDialog(const com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext >& _rxContext);
// XServiceInfo - static methods
- static ::com::sun::star::uno::Sequence< OUString > getSupportedServiceNames_static(void) throw( ::com::sun::star::uno::RuntimeException );
- static OUString getImplementationName_static(void) throw( ::com::sun::star::uno::RuntimeException );
+ static ::com::sun::star::uno::Sequence< OUString > getSupportedServiceNames_static() throw( ::com::sun::star::uno::RuntimeException );
+ static OUString getImplementationName_static() throw( ::com::sun::star::uno::RuntimeException );
static ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >
SAL_CALL Create(const ::com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext >&);
private:
diff --git a/extensions/source/propctrlr/controlfontdialog.hxx b/extensions/source/propctrlr/controlfontdialog.hxx
index a5bd97d45b81..3df0b46fcdc5 100644
--- a/extensions/source/propctrlr/controlfontdialog.hxx
+++ b/extensions/source/propctrlr/controlfontdialog.hxx
@@ -65,8 +65,8 @@ namespace pcr
virtual ::comphelper::StringSequence SAL_CALL getSupportedServiceNames() throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
// XServiceInfo - static methods
- static ::com::sun::star::uno::Sequence< OUString > getSupportedServiceNames_static(void) throw( ::com::sun::star::uno::RuntimeException );
- static OUString getImplementationName_static(void) throw( ::com::sun::star::uno::RuntimeException );
+ static ::com::sun::star::uno::Sequence< OUString > getSupportedServiceNames_static() throw( ::com::sun::star::uno::RuntimeException );
+ static OUString getImplementationName_static() throw( ::com::sun::star::uno::RuntimeException );
static ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >
SAL_CALL Create(const ::com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext >&);
diff --git a/extensions/source/propctrlr/pcrunodialogs.hxx b/extensions/source/propctrlr/pcrunodialogs.hxx
index 61a76bf24f4c..e0e6e4325e22 100644
--- a/extensions/source/propctrlr/pcrunodialogs.hxx
+++ b/extensions/source/propctrlr/pcrunodialogs.hxx
@@ -61,8 +61,8 @@ namespace pcr
virtual ::comphelper::StringSequence SAL_CALL getSupportedServiceNames() throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
// XServiceInfo - static methods
- static ::com::sun::star::uno::Sequence< OUString > getSupportedServiceNames_static(void) throw( ::com::sun::star::uno::RuntimeException );
- static OUString getImplementationName_static(void) throw( ::com::sun::star::uno::RuntimeException );
+ static ::com::sun::star::uno::Sequence< OUString > getSupportedServiceNames_static() throw( ::com::sun::star::uno::RuntimeException );
+ static OUString getImplementationName_static() throw( ::com::sun::star::uno::RuntimeException );
static ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >
SAL_CALL Create(const ::com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext >&);
diff --git a/extensions/source/propctrlr/taborder.cxx b/extensions/source/propctrlr/taborder.cxx
index 24fb70112512..2036f0834a07 100644
--- a/extensions/source/propctrlr/taborder.cxx
+++ b/extensions/source/propctrlr/taborder.cxx
@@ -58,12 +58,12 @@ namespace pcr
// XTabControllerModel
virtual void SAL_CALL setControlModels(const Sequence< Reference< XControlModel > >& rModels) throw( RuntimeException, std::exception ) SAL_OVERRIDE {m_aModels = rModels;}
- virtual Sequence< Reference< XControlModel > > SAL_CALL getControlModels(void) throw( RuntimeException, std::exception ) SAL_OVERRIDE {return m_aModels;}
+ virtual Sequence< Reference< XControlModel > > SAL_CALL getControlModels() throw( RuntimeException, std::exception ) SAL_OVERRIDE {return m_aModels;}
virtual void SAL_CALL setGroup(const Sequence< Reference< XControlModel > >& /*Group*/, const OUString& /*GroupName*/) throw( RuntimeException, std::exception ) SAL_OVERRIDE {}
- virtual sal_Int32 SAL_CALL getGroupCount(void) throw( RuntimeException, std::exception ) SAL_OVERRIDE {return 0;}
+ virtual sal_Int32 SAL_CALL getGroupCount() throw( RuntimeException, std::exception ) SAL_OVERRIDE {return 0;}
virtual void SAL_CALL getGroup(sal_Int32 /*nGroup*/, Sequence< Reference< XControlModel > >& /*Group*/, OUString& /*Name*/) throw( RuntimeException, std::exception ) SAL_OVERRIDE {}
virtual void SAL_CALL getGroupByName(const OUString& /*Name*/, Sequence< Reference< XControlModel > >& /*Group*/) throw( RuntimeException, std::exception ) SAL_OVERRIDE {}
- virtual sal_Bool SAL_CALL getGroupControl(void) throw( RuntimeException, std::exception ) SAL_OVERRIDE {return sal_False;} ;
+ virtual sal_Bool SAL_CALL getGroupControl() throw( RuntimeException, std::exception ) SAL_OVERRIDE {return sal_False;} ;
virtual void SAL_CALL setGroupControl(sal_Bool /*GroupControl*/) throw( RuntimeException, std::exception ) SAL_OVERRIDE {};
};
diff --git a/extensions/source/update/ui/updatecheckui.cxx b/extensions/source/update/ui/updatecheckui.cxx
index cad79ac149d3..cd04ef5d3810 100644
--- a/extensions/source/update/ui/updatecheckui.cxx
+++ b/extensions/source/update/ui/updatecheckui.cxx
@@ -176,7 +176,7 @@ public:
throw (uno::RuntimeException, std::exception) SAL_OVERRIDE;
//XPropertySet
- virtual uno::Reference< beans::XPropertySetInfo > SAL_CALL getPropertySetInfo(void)
+ virtual uno::Reference< beans::XPropertySetInfo > SAL_CALL getPropertySetInfo()
throw ( uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual void SAL_CALL setPropertyValue(const OUString& PropertyName, const uno::Any& aValue)
throw( beans::UnknownPropertyException, beans::PropertyVetoException,
@@ -384,7 +384,7 @@ void SAL_CALL UpdateCheckUI::disposing(const lang::EventObject&)
}
-uno::Reference< beans::XPropertySetInfo > UpdateCheckUI::getPropertySetInfo(void)
+uno::Reference< beans::XPropertySetInfo > UpdateCheckUI::getPropertySetInfo()
throw ( uno::RuntimeException, std::exception )
{
return NULL;