Kaydet (Commit) babe4ab6 authored tarafından Zsolt Bölöny's avatar Zsolt Bölöny Kaydeden (comit) Noel Grandin

Removed lcl_putNumberChar() from basegfx.

It just calls OUStringBuffer.append() and doesn't do anything special.

Change-Id: Ie59a797a8d0d24cfab826516e2b5c4e58f90dd01
Reviewed-on: https://gerrit.libreoffice.org/13850Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarNoel Grandin <noelgrandin@gmail.com>
üst 673c5993
......@@ -71,12 +71,6 @@ namespace basegfx
void lcl_skipDouble(sal_Int32& io_rPos,
const OUString& rStr);
inline void lcl_putNumberChar( OUStringBuffer& rStr,
double fValue )
{
rStr.append( fValue );
}
void lcl_putNumberCharWithSpace( OUStringBuffer& rStr,
double fValue,
double fOldValue,
......
......@@ -679,9 +679,9 @@ namespace basegfx
aResult.append(' ');
}
::basegfx::internal::lcl_putNumberChar(aResult, aPoint.getX());
aResult.append(aPoint.getX());
aResult.append(',');
::basegfx::internal::lcl_putNumberChar(aResult, aPoint.getY());
aResult.append(aPoint.getY());
}
return aResult.makeStringAndClear();
......
......@@ -176,7 +176,7 @@ namespace basegfx
}
}
lcl_putNumberChar(rStr, fValue);
rStr.append(fValue);
}
} // namespace internal
......
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