summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 10:43:54 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 10:43:54 +0000
commitf1813acd40a1962e263ff16902efdf495ab25a67 (patch)
treecdf420797d7dce174078809d895df61bbd5401e9 /framework
parent638f839fa92fdeedccb54b5b3f5d430f5dccbdbc (diff)
INTEGRATION: CWS warnings01 (1.4.32); FILE MERGED
2005/11/16 15:20:48 pl 1.4.32.2: #i55991# removed warnings 2005/10/28 14:48:48 cd 1.4.32.1: #i55991# Warning free code changes for gcc
Diffstat (limited to 'framework')
-rw-r--r--framework/source/uifactory/toolbarcontrollerfactory.cxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/framework/source/uifactory/toolbarcontrollerfactory.cxx b/framework/source/uifactory/toolbarcontrollerfactory.cxx
index f774c99fa278..f2552b615ca2 100644
--- a/framework/source/uifactory/toolbarcontrollerfactory.cxx
+++ b/framework/source/uifactory/toolbarcontrollerfactory.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: toolbarcontrollerfactory.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: rt $ $Date: 2005-09-09 02:01:20 $
+ * last change: $Author: hr $ $Date: 2006-06-19 11:43:54 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -127,8 +127,8 @@ class ConfigurationAccess_ToolbarControllerFactory : // interfaces
public ::cppu::OWeakObject
{
public:
- DECLARE_XINTERFACE
- DECLARE_XTYPEPROVIDER
+ FWK_DECLARE_XINTERFACE
+ FWK_DECLARE_XTYPEPROVIDER
ConfigurationAccess_ToolbarControllerFactory( Reference< XMultiServiceFactory >& rServiceManager );
virtual ~ConfigurationAccess_ToolbarControllerFactory();
@@ -189,10 +189,10 @@ DEFINE_XTYPEPROVIDER_3 ( ConfigurationAccess_ToolbarControllerFactory ,
ConfigurationAccess_ToolbarControllerFactory::ConfigurationAccess_ToolbarControllerFactory( Reference< XMultiServiceFactory >& rServiceManager ) :
ThreadHelpBase(),
- m_xServiceManager( rServiceManager ),
m_aPropCommand( RTL_CONSTASCII_USTRINGPARAM( "Command" )),
m_aPropModule( RTL_CONSTASCII_USTRINGPARAM( "Module" )),
m_aPropController( RTL_CONSTASCII_USTRINGPARAM( "Controller" )),
+ m_xServiceManager( rServiceManager ),
m_bConfigAccessInitialized( sal_False )
{
m_xConfigProvider = Reference< XMultiServiceFactory >( rServiceManager->createInstance(
@@ -313,7 +313,7 @@ void SAL_CALL ConfigurationAccess_ToolbarControllerFactory::elementReplaced( con
}
// lang.XEventListener
-void SAL_CALL ConfigurationAccess_ToolbarControllerFactory::disposing( const EventObject& aEvent ) throw(RuntimeException)
+void SAL_CALL ConfigurationAccess_ToolbarControllerFactory::disposing( const EventObject& ) throw(RuntimeException)
{
// SAFE
// remove our reference to the config access
@@ -434,8 +434,8 @@ DEFINE_INIT_SERVICE ( ToolbarControllerFactory, {} )
ToolbarControllerFactory::ToolbarControllerFactory( const Reference< XMultiServiceFactory >& xServiceManager ) :
ThreadHelpBase(),
- m_xServiceManager( xServiceManager ),
- m_bConfigRead( sal_False )
+ m_bConfigRead( sal_False ),
+ m_xServiceManager( xServiceManager )
{
m_pConfigAccess = new ConfigurationAccess_ToolbarControllerFactory( m_xServiceManager );
m_pConfigAccess->acquire();
@@ -452,7 +452,7 @@ ToolbarControllerFactory::~ToolbarControllerFactory()
// XMultiComponentFactory
Reference< XInterface > SAL_CALL ToolbarControllerFactory::createInstanceWithContext(
const ::rtl::OUString& aServiceSpecifier,
- const Reference< XComponentContext >& Context )
+ const Reference< XComponentContext >& )
throw (Exception, RuntimeException)
{
// SAFE
@@ -475,7 +475,7 @@ throw (Exception, RuntimeException)
Reference< XInterface > SAL_CALL ToolbarControllerFactory::createInstanceWithArgumentsAndContext(
const ::rtl::OUString& ServiceSpecifier,
const Sequence< Any >& Arguments,
- const Reference< XComponentContext >& Context )
+ const Reference< XComponentContext >& )
throw (Exception, RuntimeException)
{
const rtl::OUString aPropModuleName( RTL_CONSTASCII_USTRINGPARAM( "ModuleName" ));