editeng/source/items/frmitems.cxx | 2 +- svx/source/unodraw/unoshap2.cxx | 2 +- sw/source/core/unocore/unoframe.cxx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-)
New commits: commit 49d1a2f70bb8c099f1a950e5ad9f805d252ea342 Author: Julien Nabet <[email protected]> AuthorDate: Fri Aug 31 07:32:43 2018 +0200 Commit: Julien Nabet <[email protected]> CommitDate: Fri Aug 31 08:41:07 2018 +0200 Fix syntax Change-Id: I21cca2e5cd81ee58a59fda077ed40ba02d9f1df3 Reviewed-on: https://gerrit.libreoffice.org/59844 Tested-by: Jenkins Reviewed-by: Julien Nabet <[email protected]> diff --git a/editeng/source/items/frmitems.cxx b/editeng/source/items/frmitems.cxx index f66dfff63a63..e690d36ffb85 100644 --- a/editeng/source/items/frmitems.cxx +++ b/editeng/source/items/frmitems.cxx @@ -3316,7 +3316,7 @@ bool SvxBrushItem::QueryValue( uno::Any& rVal, sal_uInt8 nMemberId ) const case MID_GRAPHIC_URL: { - throw uno::RuntimeException("Getting from this property is not unsupported"); + throw uno::RuntimeException("Getting from this property is not supported"); } break; case MID_GRAPHIC: diff --git a/svx/source/unodraw/unoshap2.cxx b/svx/source/unodraw/unoshap2.cxx index 459353b72a73..c13b75661df2 100644 --- a/svx/source/unodraw/unoshap2.cxx +++ b/svx/source/unodraw/unoshap2.cxx @@ -1450,7 +1450,7 @@ bool SvxGraphicObject::getPropertyValueImpl( const OUString& rName, const SfxIte case OWN_ATTR_GRAPHIC_URL: { - throw uno::RuntimeException("Getting from this property is not unsupported"); + throw uno::RuntimeException("Getting from this property is not supported"); break; } diff --git a/sw/source/core/unocore/unoframe.cxx b/sw/source/core/unocore/unoframe.cxx index 15f4b88b01f8..d8f7f1ac7053 100644 --- a/sw/source/core/unocore/unoframe.cxx +++ b/sw/source/core/unocore/unoframe.cxx @@ -2056,7 +2056,7 @@ uno::Any SwXFrame::getPropertyValue(const OUString& rPropertyName) } else if( FN_UNO_GRAPHIC_URL == pEntry->nWID ) { - throw uno::RuntimeException("Getting from this property is not unsupported"); + throw uno::RuntimeException("Getting from this property is not supported"); } else if( FN_UNO_GRAPHIC == pEntry->nWID ) { _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
