summaryrefslogtreecommitdiff
path: root/sal/inc/rtl/strbuf.hxx
diff options
context:
space:
mode:
authorth <th@openoffice.org>2001-05-09 14:25:04 +0000
committerth <th@openoffice.org>2001-05-09 14:25:04 +0000
commit241975bf289a8211ababfe8662502ea643f41a76 (patch)
tree9c1ddea8d6c508b64e8fceeaa8ed9772c7b244b2 /sal/inc/rtl/strbuf.hxx
parent54007bb90c30469a5357c56056b8fdba3a233e24 (diff)
rework API
Diffstat (limited to 'sal/inc/rtl/strbuf.hxx')
-rw-r--r--sal/inc/rtl/strbuf.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sal/inc/rtl/strbuf.hxx b/sal/inc/rtl/strbuf.hxx
index 144be942e591..f562c78f9519 100644
--- a/sal/inc/rtl/strbuf.hxx
+++ b/sal/inc/rtl/strbuf.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: strbuf.hxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: jsc $ $Date: 2001-04-26 13:34:01 $
+ * last change: $Author: th $ $Date: 2001-05-09 15:24:15 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -195,7 +195,7 @@ public:
OString makeStringAndClear()
{
OString aRet( pData );
- RTL_STRING_NEW(&pData);
+ rtl_string_new(&pData);
nCapacity = 0;
return aRet;
}
@@ -660,12 +660,12 @@ public:
}
private:
/**
- A pointer to the data structur which contains the data.
+ A pointer to the data structur which contains the data.
*/
rtl_String * pData;
/**
- The len of the pData->buffer.
+ The len of the pData->buffer.
*/
sal_Int32 nCapacity;
};