summaryrefslogtreecommitdiff
path: root/sw/source/ui/vba/vbatablehelper.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2024-05-22 12:46:02 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2024-05-23 08:37:41 +0200
commitdddba389b79647f69f447e576cf7e880be5661c6 (patch)
tree10d8da4fb55cf603a70229abddc460b0646ed237 /sw/source/ui/vba/vbatablehelper.cxx
parentb1f4a39a326bcaf06068914c03c3dea6f9aeebd8 (diff)
loplugin:ostr in sw/../vba
Change-Id: I73491b481fb82785a21f7239fff62f812dd7440c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167953 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/source/ui/vba/vbatablehelper.cxx')
-rw-r--r--sw/source/ui/vba/vbatablehelper.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/ui/vba/vbatablehelper.cxx b/sw/source/ui/vba/vbatablehelper.cxx
index 2d7a1b393ef8..a5908635b9f8 100644
--- a/sw/source/ui/vba/vbatablehelper.cxx
+++ b/sw/source/ui/vba/vbatablehelper.cxx
@@ -122,14 +122,14 @@ sal_Int32 SwVbaTableHelper::getTableWidth( ) const
sal_Int32 nWidth = 0;
bool isWidthRelatvie = false;
uno::Reference< beans::XPropertySet > xTableProps( mxTextTable, uno::UNO_QUERY_THROW );
- xTableProps->getPropertyValue("IsWidthRelative") >>= isWidthRelatvie;
+ xTableProps->getPropertyValue(u"IsWidthRelative"_ustr) >>= isWidthRelatvie;
if( isWidthRelatvie )
{
- xTableProps->getPropertyValue("RelativeWidth") >>= nWidth;
+ xTableProps->getPropertyValue(u"RelativeWidth"_ustr) >>= nWidth;
}
else
{
- xTableProps->getPropertyValue("Width") >>= nWidth;
+ xTableProps->getPropertyValue(u"Width"_ustr) >>= nWidth;
}
return nWidth;
}