summaryrefslogtreecommitdiff
path: root/sfx2/source/config
diff options
context:
space:
mode:
authorMarcel Metz <mmetz@adrian-broher.net>2012-01-16 21:38:13 +0100
committerMichael Stahl <mstahl@redhat.com>2012-01-17 23:27:42 +0100
commit91fe68f4c2d66dc34b99386f824abdd6c09f6bb1 (patch)
tree39621784f14befee46b01812ff546920343d4945 /sfx2/source/config
parent28c9559f64d1d4ff2d0e58d8ecac621e8c7dee90 (diff)
Replaced SAL_INFO with SAL_WARN were applicable.
Diffstat (limited to 'sfx2/source/config')
-rw-r--r--sfx2/source/config/evntconf.cxx10
1 files changed, 7 insertions, 3 deletions
diff --git a/sfx2/source/config/evntconf.cxx b/sfx2/source/config/evntconf.cxx
index 1c18d3f8fcf6..5ae485b46b20 100644
--- a/sfx2/source/config/evntconf.cxx
+++ b/sfx2/source/config/evntconf.cxx
@@ -217,7 +217,7 @@ uno::Any CreateEventData_Impl( const SvxMacro *pMacro )
}
else
{
- SAL_INFO( "sfx2", "CreateEventData_Impl(): ScriptType not supported!");
+ SAL_WARN( "sfx2.config", "CreateEventData_Impl(): ScriptType not supported!");
}
}
else
@@ -256,9 +256,13 @@ void PropagateEvent_Impl( SfxObjectShell *pDoc, rtl::OUString aEventName, const
xEvents->replaceByName( aEventName, aEventData );
}
catch( const ::com::sun::star::lang::IllegalArgumentException& )
- { SAL_INFO( "sfx2", "PropagateEvents_Impl: caught IllegalArgumentException" ); }
+ {
+ SAL_WARN( "sfx2.config", "PropagateEvents_Impl: caught IllegalArgumentException" );
+ }
catch( const ::com::sun::star::container::NoSuchElementException& )
- { SAL_INFO( "sfx2", "PropagateEvents_Impl: caught NoSuchElementException" ); }
+ {
+ SAL_WARN( "sfx2.config", "PropagateEvents_Impl: caught NoSuchElementException" );
+ }
}
else {
DBG_WARNING( "PropagateEvents_Impl: Got unkown event" );