diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-12-10 11:49:47 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-12-10 20:34:49 +0100 |
commit | d7e9db93aec2d1c698e01893fbcaadd6d1207167 (patch) | |
tree | 6d92ad20d97c457faceb58110925fae1f8e6276c /editeng/source | |
parent | 5291c3ef56948a91166a597033f3e48e00d57403 (diff) |
Related: tdf#129300 vertical justify had no description
reword the horizontal one and add a vertical one
Change-Id: I56144bdd542166a4a980bc4db03376f6bdd55ffc
Reviewed-on: https://gerrit.libreoffice.org/84815
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'editeng/source')
-rw-r--r-- | editeng/source/items/justifyitem.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editeng/source/items/justifyitem.cxx b/editeng/source/items/justifyitem.cxx index 976226e97671..4c813a591aa7 100644 --- a/editeng/source/items/justifyitem.cxx +++ b/editeng/source/items/justifyitem.cxx @@ -328,7 +328,8 @@ OUString SvxVerJustifyItem::GetValueText( SvxCellVerJustify nVal ) case SvxCellVerJustify::Bottom: sRet = EditResId(RID_SVXITEMS_VERJUST_BOTTOM); break; - default: + case SvxCellVerJustify::Block: + sRet = EditResId(RID_SVXITEMS_VERJUST_BLOCK); break; } return sRet; |