Kaydet (Commit) a1eeccca authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Clean up a couple of overly verbose SAL_INFOs

Change-Id: I2b17bfb95f687617967d4e43356d39aa3bb6e041
üst 2caf3904
...@@ -2221,7 +2221,6 @@ public: ...@@ -2221,7 +2221,6 @@ public:
{ {
if ( mxComponent.is() ) if ( mxComponent.is() )
{ {
SAL_INFO("basic", "*********** Registering the listeners");
try try
{ {
uno::Reference< awt::XTopWindow >( mxComponent, uno::UNO_QUERY_THROW )->addTopWindowListener( this ); uno::Reference< awt::XTopWindow >( mxComponent, uno::UNO_QUERY_THROW )->addTopWindowListener( this );
...@@ -2255,7 +2254,6 @@ public: ...@@ -2255,7 +2254,6 @@ public:
{ {
if ( mxComponent.is() && !mbDisposed ) if ( mxComponent.is() && !mbDisposed )
{ {
SAL_INFO("basic", "*********** Removing the listeners");
try try
{ {
uno::Reference< awt::XTopWindow >( mxComponent, uno::UNO_QUERY_THROW )->removeTopWindowListener( this ); uno::Reference< awt::XTopWindow >( mxComponent, uno::UNO_QUERY_THROW )->removeTopWindowListener( this );
...@@ -2397,7 +2395,6 @@ public: ...@@ -2397,7 +2395,6 @@ public:
virtual void SAL_CALL disposing( const lang::EventObject& /*Source*/ ) override virtual void SAL_CALL disposing( const lang::EventObject& /*Source*/ ) override
{ {
SAL_INFO("basic", "** Userform/Dialog disposing");
removeListener(); removeListener();
mbDisposed = true; mbDisposed = true;
if ( mpUserForm ) if ( mpUserForm )
...@@ -2436,7 +2433,7 @@ void SbUserFormModule::triggerMethod( const OUString& aMethodToRun ) ...@@ -2436,7 +2433,7 @@ void SbUserFormModule::triggerMethod( const OUString& aMethodToRun )
void SbUserFormModule::triggerMethod( const OUString& aMethodToRun, Sequence< Any >& aArguments ) void SbUserFormModule::triggerMethod( const OUString& aMethodToRun, Sequence< Any >& aArguments )
{ {
SAL_INFO("basic", "*** trigger " << aMethodToRun << " ***"); SAL_INFO("basic", "trigger " << aMethodToRun);
// Search method // Search method
SbxVariable* pMeth = SbObjModule::Find( aMethodToRun, SbxClassType::Method ); SbxVariable* pMeth = SbObjModule::Find( aMethodToRun, SbxClassType::Method );
if( pMeth ) if( pMeth )
...@@ -2477,14 +2474,11 @@ void SbUserFormModule::triggerMethod( const OUString& aMethodToRun, Sequence< An ...@@ -2477,14 +2474,11 @@ void SbUserFormModule::triggerMethod( const OUString& aMethodToRun, Sequence< An
void SbUserFormModule::triggerActivateEvent() void SbUserFormModule::triggerActivateEvent()
{ {
SAL_INFO("basic", "**** entering SbUserFormModule::triggerActivate");
triggerMethod( "UserForm_Activate" ); triggerMethod( "UserForm_Activate" );
SAL_INFO("basic", "**** leaving SbUserFormModule::triggerActivate");
} }
void SbUserFormModule::triggerDeactivateEvent() void SbUserFormModule::triggerDeactivateEvent()
{ {
SAL_INFO("basic", "**** SbUserFormModule::triggerDeactivate");
triggerMethod( "Userform_Deactivate" ); triggerMethod( "Userform_Deactivate" );
} }
...@@ -2492,14 +2486,12 @@ void SbUserFormModule::triggerInitializeEvent() ...@@ -2492,14 +2486,12 @@ void SbUserFormModule::triggerInitializeEvent()
{ {
if ( mbInit ) if ( mbInit )
return; return;
SAL_INFO("basic", "**** SbUserFormModule::triggerInitializeEvent");
triggerMethod("Userform_Initialize"); triggerMethod("Userform_Initialize");
mbInit = true; mbInit = true;
} }
void SbUserFormModule::triggerTerminateEvent() void SbUserFormModule::triggerTerminateEvent()
{ {
SAL_INFO("basic", "**** SbUserFormModule::triggerTerminateEvent");
triggerMethod("Userform_Terminate"); triggerMethod("Userform_Terminate");
mbInit=false; mbInit=false;
} }
...@@ -2543,7 +2535,6 @@ SbxVariable* SbUserFormModuleInstance::Find( const OUString& rName, SbxClassType ...@@ -2543,7 +2535,6 @@ SbxVariable* SbUserFormModuleInstance::Find( const OUString& rName, SbxClassType
void SbUserFormModule::Load() void SbUserFormModule::Load()
{ {
SAL_INFO("basic", "** load() ");
// forces a load // forces a load
if ( !pDocObject.is() ) if ( !pDocObject.is() )
InitObject(); InitObject();
...@@ -2552,8 +2543,6 @@ void SbUserFormModule::Load() ...@@ -2552,8 +2543,6 @@ void SbUserFormModule::Load()
void SbUserFormModule::Unload() void SbUserFormModule::Unload()
{ {
SAL_INFO("basic", "** Unload() ");
sal_Int8 nCancel = 0; sal_Int8 nCancel = 0;
Sequence< Any > aParams; Sequence< Any > aParams;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment