diff options
Diffstat (limited to 'sw/inc/viewopt.hxx')
-rw-r--r-- | sw/inc/viewopt.hxx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sw/inc/viewopt.hxx b/sw/inc/viewopt.hxx index f11c70cdf6e8..d345d86440d4 100644 --- a/sw/inc/viewopt.hxx +++ b/sw/inc/viewopt.hxx @@ -4,9 +4,9 @@ * * $RCSfile: viewopt.hxx,v $ * - * $Revision: 1.26 $ + * $Revision: 1.27 $ * - * last change: $Author: hr $ $Date: 2007-09-27 08:17:20 $ + * last change: $Author: ihi $ $Date: 2007-11-26 17:28:22 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -182,6 +182,7 @@ protected: BOOL bFormView : 1; // <-- BOOL bBookview : 1; // view mode for page preview + sal_Bool bShowPlaceHolderFields : 1; //only used in printing! // Maszstab USHORT nZoom; // Angaben in Prozent @@ -560,6 +561,9 @@ public: BYTE GetShdwCrsrFillMode() const { return nShdwCrsrFillMode; } void SetShdwCrsrFillMode( BYTE nMode ) { nShdwCrsrFillMode = nMode; }; + sal_Bool IsShowPlaceHolderFields() const { return bShowPlaceHolderFields; } + void SetShowPlaceHolderFields(sal_Bool bSet) { bShowPlaceHolderFields = bSet; } + static Color& GetDocColor(); static Color& GetDocBoundariesColor(); static Color& GetAppBackgroundColor(); |