diff options
author | Tor Lillqvist <tlillqvist@suse.com> | 2012-03-30 19:49:59 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2012-03-30 19:52:31 +0300 |
commit | 3b0e35bf84ad8ac7acde659214cbab880bf47cda (patch) | |
tree | 880b1dcdc52229f75813a884935776a2422c184b /sfx2/source | |
parent | fb5ede9e31dd2fee767d7e5438c8e3376e926daa (diff) |
Correct method name in warning message
Diffstat (limited to 'sfx2/source')
-rw-r--r-- | sfx2/source/bastyp/helper.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sfx2/source/bastyp/helper.cxx b/sfx2/source/bastyp/helper.cxx index 7885f0d98a8e..5da2d95414ef 100644 --- a/sfx2/source/bastyp/helper.cxx +++ b/sfx2/source/bastyp/helper.cxx @@ -108,13 +108,14 @@ uno::Sequence < OUString > SfxContentHelper::GetResultSet( const String& rURL ) } catch( const ucb::CommandAbortedException& ) { - SAL_WARN( "sfx2.bastyp", "createCursor: CommandAbortedException" ); + SAL_WARN( "sfx2.bastyp", "GetResultSet: CommandAbortedException" ); } catch( const uno::Exception& ) { - SAL_WARN( "sfx2.bastyp", "createCursor: Any other exception" ); + SAL_WARN( "sfx2.bastyp", "GetResultSet: Any other exception" ); } + if ( xResultSet.is() ) { pList = new StringList_Impl(); |