summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@suse.com>2012-03-30 19:49:59 +0300
committerTor Lillqvist <tlillqvist@suse.com>2012-03-30 19:52:31 +0300
commit3b0e35bf84ad8ac7acde659214cbab880bf47cda (patch)
tree880b1dcdc52229f75813a884935776a2422c184b /sfx2
parentfb5ede9e31dd2fee767d7e5438c8e3376e926daa (diff)
Correct method name in warning message
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/bastyp/helper.cxx5
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();