diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-10-03 18:57:54 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-10-03 18:58:20 +0200 |
commit | 78225f2ebeb30c853395240f7cc87926349aa975 (patch) | |
tree | a8d186ad39a12ff9fce2892c2dfc4b0c2af16b05 /sal | |
parent | afe9178a8ddb6f458f1e0e67a3b6711deed46f79 (diff) |
Revert "add rtl::OUStringBuffer::append(bool)"
This reverts commit 563fa900ba22bf83dfa58e67807ed0337f810576.
Diffstat (limited to 'sal')
-rw-r--r-- | sal/inc/rtl/ustrbuf.hxx | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/sal/inc/rtl/ustrbuf.hxx b/sal/inc/rtl/ustrbuf.hxx index 0b4586bcdfbe..a11dff178442 100644 --- a/sal/inc/rtl/ustrbuf.hxx +++ b/sal/inc/rtl/ustrbuf.hxx @@ -501,25 +501,6 @@ public: } /** - Appends the string representation of the <code>bool</code> - argument to the string buffer. - - The argument is converted to a string as if by the method - <code>String.valueOf</code>, and the characters of that - string are then appended to this string buffer. - - @param b a <code>bool</code>. - @return this string buffer. - - @since LibreOffice 3.7 - */ - OUStringBuffer & append(bool b) - { - sal_Unicode sz[RTL_USTR_MAX_VALUEOFBOOLEAN]; - return append( sz, rtl_ustr_valueOfBoolean( sz, b ) ); - } - - /** Appends the string representation of the <code>sal_Bool</code> argument to the string buffer. |