summaryrefslogtreecommitdiff
path: root/sal/inc
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2012-10-03 18:57:54 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2012-10-03 18:58:20 +0200
commit78225f2ebeb30c853395240f7cc87926349aa975 (patch)
treea8d186ad39a12ff9fce2892c2dfc4b0c2af16b05 /sal/inc
parentafe9178a8ddb6f458f1e0e67a3b6711deed46f79 (diff)
Revert "add rtl::OUStringBuffer::append(bool)"
Diffstat (limited to 'sal/inc')
-rw-r--r--sal/inc/rtl/ustrbuf.hxx19
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.