From a1a0f61cde7d89f0a404b38ed7a4d0aacb9c9dd5 Mon Sep 17 00:00:00 2001
From: Jens-Heiner Rechtien
Date: Fri, 2 Nov 2007 15:41:25 +0000
Subject: [PATCH] INTEGRATION: CWS adc18 (1.3.56); FILE MERGED 2007/10/18
15:23:15 np 1.3.56.1: #i81775#
---
autodoc/source/display/inc/toolkit/out_position.hxx | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/autodoc/source/display/inc/toolkit/out_position.hxx b/autodoc/source/display/inc/toolkit/out_position.hxx
index 5aef70c06e9a..f82122445d8a 100644
--- a/autodoc/source/display/inc/toolkit/out_position.hxx
+++ b/autodoc/source/display/inc/toolkit/out_position.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: out_position.hxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: rt $ $Date: 2005-09-07 17:57:57 $
+ * last change: $Author: hr $ $Date: 2007-11-02 16:41:25 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -59,7 +59,7 @@ class Position
Node & i_directory,
const String & i_file = String::Null_() );
Position(
- Position & i_directory,
+ const Position & i_directory,
const String & i_rDifferentFile );
~Position();
@@ -81,14 +81,14 @@ class Position
StringVector & o_result ) const
{ pDirectory->Get_Chain(o_result); }
String LinkTo(
- Position & i_destination,
+ const Position & i_destination,
const String & i_localLabel = String::Null_() ) const;
String LinkToRoot(
const String & i_localLabel = String::Null_() ) const;
void Get_LinkTo(
StreamStr & o_result,
- Position & i_destination,
+ const Position & i_destination,
const String & i_localLabel = String::Null_() ) const;
void Get_LinkToRoot(
StreamStr & o_result,
@@ -97,7 +97,7 @@ class Position
static char Delimiter() { return '/'; }
// ACCESS
- Node & RelatedNode() { return *pDirectory; }
+ Node & RelatedNode() const { return *pDirectory; }
void Set(
Node & i_node,