summaryrefslogtreecommitdiff
path: root/sal/inc/rtl/ref.hxx
diff options
context:
space:
mode:
authorJuergen Schmidt <jsc@openoffice.org>2001-04-26 12:34:01 +0000
committerJuergen Schmidt <jsc@openoffice.org>2001-04-26 12:34:01 +0000
commitf169e882612405013c02e8c45f38582df5c9fc74 (patch)
tree5e6cda8a2aa5505a5ff9259a7269f6228f058356 /sal/inc/rtl/ref.hxx
parent5a66dbe405f52f6eed455ba78d79d70d186f3f7f (diff)
removing leading stars in documentation strings
Diffstat (limited to 'sal/inc/rtl/ref.hxx')
-rw-r--r--sal/inc/rtl/ref.hxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/sal/inc/rtl/ref.hxx b/sal/inc/rtl/ref.hxx
index 7eb858ae51db..4f9e8ab5cdb4 100644
--- a/sal/inc/rtl/ref.hxx
+++ b/sal/inc/rtl/ref.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: ref.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: mhu $ $Date: 2001-03-13 12:00:11 $
+ * last change: $Author: jsc $ $Date: 2001-04-26 13:34:01 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -139,8 +139,8 @@ public:
/** Assignment.
- * Unbinds this instance from its body (if bound) and
- * bind it to the body represented by the handle.
+ Unbinds this instance from its body (if bound) and
+ bind it to the body represented by the handle.
*/
inline Reference<reference_type> &
SAL_CALL operator= (const Reference<reference_type> & handle)
@@ -169,7 +169,7 @@ public:
/** Set...
- * Similar to assignment.
+ Similar to assignment.
*/
inline Reference<reference_type> &
SAL_CALL set (reference_type * pBody)
@@ -183,11 +183,11 @@ public:
}
/** Unbind the body from this handle.
- * Note that for a handle representing a large body,
- * "handle.clear().set(new body());" _might_
- * perform a little bit better than "handle.set(new body());",
- * since in the second case two large objects exist in memory
- * (the old body and the new body).
+ Note that for a handle representing a large body,
+ "handle.clear().set(new body());" _might_
+ perform a little bit better than "handle.set(new body());",
+ since in the second case two large objects exist in memory
+ (the old body and the new body).
*/
inline Reference<reference_type> & SAL_CALL clear()
{
@@ -201,8 +201,8 @@ public:
/** Get the body. Can be used instead of operator->().
- * I.e. handle->someBodyOp() and handle.get()->someBodyOp()
- * are the same.
+ I.e. handle->someBodyOp() and handle.get()->someBodyOp()
+ are the same.
*/
inline reference_type * SAL_CALL get() const
{