summaryrefslogtreecommitdiff
path: root/sw/source/core
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2003-12-09 10:37:58 +0000
committerKurt Zenker <kz@openoffice.org>2003-12-09 10:37:58 +0000
commit53a09145fcdcc9805f699026cc105fafa8da0815 (patch)
tree1f2f9d355b149993f4c63d0ee1c73a1f391ad155 /sw/source/core
parentac24f50073ce0f647ca6e8923cb23e4ea44c73aa (diff)
INTEGRATION: CWS portlaoisefilterteam16 (1.4.436); FILE MERGED
2003/11/12 12:49:18 cmc 1.4.436.1: #112341# ah give me a break, using a pointer always, always implies that it could be 0
Diffstat (limited to 'sw/source/core')
-rw-r--r--sw/source/core/text/pordrop.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/core/text/pordrop.hxx b/sw/source/core/text/pordrop.hxx
index 20b85d9cb36b..389af1b4da0a 100644
--- a/sw/source/core/text/pordrop.hxx
+++ b/sw/source/core/text/pordrop.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: pordrop.hxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: fme $ $Date: 2001-10-19 08:38:42 $
+ * last change: $Author: kz $ $Date: 2003-12-09 11:37:58 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -142,7 +142,7 @@ public:
inline void SetY( short nNew ) { nY = nNew; }
- inline SwFont* GetFnt() { return pPart ? &pPart->GetFont() : NULL; }
+ inline SwFont* GetFnt() const { return pPart ? &pPart->GetFont() : NULL; }
static void DeleteDropCapCache();