Kaydet (Commit) 330c6cb5 authored tarafından Anderson Roberto's avatar Anderson Roberto Kaydeden (comit) Noel Grandin

fdo#57950: Remove chained appends in accessibility

Change-Id: I4ba583a891933068ab4003307d09693180c7b61f
Reviewed-on: https://gerrit.libreoffice.org/7436Reviewed-by: 's avatarNoel Grandin <noelgrandin@gmail.com>
Tested-by: 's avatarNoel Grandin <noelgrandin@gmail.com>
üst 849c3d59
...@@ -119,14 +119,7 @@ namespace accessibility ...@@ -119,14 +119,7 @@ namespace accessibility
SolarMethodGuard aGuard( *this ); SolarMethodGuard aGuard( *this );
// TODO: localize this! // TODO: localize this!
OUStringBuffer sName; return "Column " + OUString::number(getColumnPos()-1) + ", Row " + OUString::number(getRowPos());
sName.appendAscii("Column ");
sName.append(getColumnPos()-1);
sName.appendAscii(", Row ");
sName.append(getRowPos());
return sName.makeStringAndClear();
} }
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment