diff options
author | Kurt Zenker <kz@openoffice.org> | 2008-04-03 16:03:13 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2008-04-03 16:03:13 +0000 |
commit | 61bd14ae3dcb8a9f18fde09113125fc741babd24 (patch) | |
tree | 656694ae650242aa8a27818d1fe1a6ad1576ad66 /vcl | |
parent | dbbf365921b50009db8ea86b90c99f3a26c467bc (diff) |
INTEGRATION: CWS vcl87 (1.4.96); FILE MERGED
2008/03/03 14:02:05 pl 1.4.96.1: #i76307# repair text background
Diffstat (limited to 'vcl')
-rwxr-xr-x | vcl/inc/vcl/sallayout.hxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/vcl/inc/vcl/sallayout.hxx b/vcl/inc/vcl/sallayout.hxx index 0731542527bc..263dc3206e73 100755 --- a/vcl/inc/vcl/sallayout.hxx +++ b/vcl/inc/vcl/sallayout.hxx @@ -4,9 +4,9 @@ * * $RCSfile: sallayout.hxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: kz $ $Date: 2008-03-31 13:23:54 $ + * last change: $Author: kz $ $Date: 2008-04-03 17:03:13 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -196,7 +196,9 @@ class VCL_DLLPUBLIC SalLayout public: // used by upper layers Point& DrawBase() { return maDrawBase; } + const Point& DrawBase() const { return maDrawBase; } Point& DrawOffset() { return maDrawOffset; } + const Point& DrawOffset() const { return maDrawOffset; } Point GetDrawPosition( const Point& rRelative = Point(0,0) ) const; virtual bool LayoutText( ImplLayoutArgs& ) = 0; // first step of layouting |