diff options
author | Christian Lippka <cl@openoffice.org> | 2002-01-14 12:04:49 +0000 |
---|---|---|
committer | Christian Lippka <cl@openoffice.org> | 2002-01-14 12:04:49 +0000 |
commit | cb0377834113f5fdc2ef29a05080e5bc944ce9da (patch) | |
tree | fa96a0f9ddbe823fb0506e1b5c0949842c81374f /sd/inc/sdpage.hxx | |
parent | d2b7576a0483c0da1297ba4f579372d72f5e0bd7 (diff) |
#96384# fixed SetOrientation & GetOrientation from inline to virtual
Diffstat (limited to 'sd/inc/sdpage.hxx')
-rw-r--r-- | sd/inc/sdpage.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sd/inc/sdpage.hxx b/sd/inc/sdpage.hxx index 9a49729803a8..faa62f68f400 100644 --- a/sd/inc/sdpage.hxx +++ b/sd/inc/sdpage.hxx @@ -2,9 +2,9 @@ * * $RCSfile: sdpage.hxx,v $ * - * $Revision: 1.12 $ + * $Revision: 1.13 $ * - * last change: $Author: aw $ $Date: 2001-12-13 15:55:03 $ + * last change: $Author: cl $ $Date: 2002-01-14 13:04:22 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -267,8 +267,8 @@ public: void SetPaperBin(USHORT nBin) { nPaperBin = nBin; } USHORT GetPaperBin() const { return nPaperBin; } - void SetOrientation(const Orientation eOrient) { eOrientation = eOrient; } - Orientation GetOrientation() const { return eOrientation; } + virtual void SetOrientation(Orientation eOrient); + virtual Orientation GetOrientation() const; virtual SfxStyleSheet* GetTextStyleSheetForObject( SdrObject* pObj ) const; |