[Libreoffice-commits] core.git: include/rtl

Muthu Subramanian sumuthu at collabora.com
Tue Dec 10 04:18:36 PST 2013


 include/rtl/strbuf.hxx |    5 +++++
 1 file changed, 5 insertions(+)

New commits:
commit 22cb5a88a047c4c0a4ab0e0236e70eee417e1711
Author: Muthu Subramanian <sumuthu at collabora.com>
Date:   Tue Dec 10 17:58:55 2013 +0530

    Fix build issue - add append(bool) to strbuf

diff --git a/include/rtl/strbuf.hxx b/include/rtl/strbuf.hxx
index e21efbb..ce3ad0f 100644
--- a/include/rtl/strbuf.hxx
+++ b/include/rtl/strbuf.hxx
@@ -532,6 +532,11 @@ public:
         return append( sz, rtl_str_valueOfBoolean( sz, b ) );
     }
 
+    OStringBuffer & append(bool b)
+    {
+        return append((sal_Bool)b);
+    }
+
     /**
         Appends the string representation of the <code>char</code>
         argument to this string buffer.


More information about the Libreoffice-commits mailing list