diff options
author | Matteo Casalin <matteo.casalin@yahoo.com> | 2013-08-18 13:01:15 +0200 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-08-20 12:36:45 +0000 |
commit | 92440af9766f8d10adc4669fcd45642731626956 (patch) | |
tree | 53d238746af85f328c5333510ba45dcbc85837a7 /sw | |
parent | b623669b4d8a6f20f8aa40c7afb4a59f1ad8b5c3 (diff) |
Shortened string should really be shorter
Change-Id: I34afb1c85cf1cf389faab5f1ae415e34d42c5ef5
Reviewed-on: https://gerrit.libreoffice.org/5491
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/ui/docvw/SidebarWin.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/docvw/SidebarWin.cxx b/sw/source/ui/docvw/SidebarWin.cxx index ab1471a30492..4a0ae7580958 100644 --- a/sw/source/ui/docvw/SidebarWin.cxx +++ b/sw/source/ui/docvw/SidebarWin.cxx @@ -382,7 +382,7 @@ void SwSidebarWin::CheckMetaText() { sMeta = SW_RESSTR(STR_NOAUTHOR); } - else if (sMeta.getLength() > 22) + else if (sMeta.getLength() > 23) { sMeta = sMeta.copy(0, 20) + "..."; } |