Correct method name in warning message

This commit is contained in:
Tor Lillqvist
2012-03-30 19:49:59 +03:00
parent fb5ede9e31
commit 3b0e35bf84

View File

@@ -108,13 +108,14 @@ uno::Sequence < OUString > SfxContentHelper::GetResultSet( const String& rURL )
} }
catch( const ucb::CommandAbortedException& ) catch( const ucb::CommandAbortedException& )
{ {
SAL_WARN( "sfx2.bastyp", "createCursor: CommandAbortedException" ); SAL_WARN( "sfx2.bastyp", "GetResultSet: CommandAbortedException" );
} }
catch( const uno::Exception& ) catch( const uno::Exception& )
{ {
SAL_WARN( "sfx2.bastyp", "createCursor: Any other exception" ); SAL_WARN( "sfx2.bastyp", "GetResultSet: Any other exception" );
} }
if ( xResultSet.is() ) if ( xResultSet.is() )
{ {
pList = new StringList_Impl(); pList = new StringList_Impl();