summaryrefslogtreecommitdiff
path: root/sw/inc/viewopt.hxx
diff options
context:
space:
mode:
authorMathias Bauer <mba@openoffice.org>2011-02-09 19:07:37 +0100
committerMathias Bauer <mba@openoffice.org>2011-02-09 19:07:37 +0100
commit9bdf5d2d49574bb0f2bc1ed92704031ad5215ca5 (patch)
tree476b37474a366a845c3549c1cac919c735074025 /sw/inc/viewopt.hxx
parent749c27fafbe1e57b7ba25f759272c02de20469e0 (diff)
CWS swlayoutrefactoring: fixes for compilation on unxlngxi after resync
Diffstat (limited to 'sw/inc/viewopt.hxx')
-rw-r--r--sw/inc/viewopt.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sw/inc/viewopt.hxx b/sw/inc/viewopt.hxx
index 5638967197ce..c290f1ed9c99 100644
--- a/sw/inc/viewopt.hxx
+++ b/sw/inc/viewopt.hxx
@@ -158,9 +158,9 @@ protected:
sal_Bool bStarOneSetting : 1;// prevent from UI automatics (no scrollbars in readonly documents)
sal_Bool bIsPagePreview : 1; // the preview mustn't print field/footnote/... shadings
sal_Bool bSelectionInReadonly : 1; //determines whether selection is switched on in readonly documents
- sal_Bool bFormView : 1;
+ sal_Bool mbFormView : 1;
sal_Bool mbBrowseMode : 1; //swmod 080130
- sal_Bool bBookview : 1; // view mode for page preview
+ sal_Bool mbBookView : 1; // view mode for page preview
sal_Bool mbViewLayoutBookMode : 1; // book view mode for edit view
sal_Bool bShowPlaceHolderFields : 1; //only used in printing!
mutable bool bIdle;
@@ -408,14 +408,14 @@ public:
sal_Bool IsSelectionInReadonly() const {return bSelectionInReadonly;}
void SetSelectionInReadonly(sal_Bool bSet) {bSelectionInReadonly = bSet;}
- sal_Bool IsFormView() const { return bFormView; }
- void SetFormView( sal_Bool bSet ) { bFormView = bSet; }
+ sal_Bool IsFormView() const { return mbFormView; }
+ void SetFormView( sal_Bool bSet ) { mbFormView = bSet; }
// <--
inline sal_Bool getBrowseMode() const { return mbBrowseMode; }
inline void setBrowseMode(sal_Bool bSet) { mbBrowseMode = bSet; }
- inline sal_Bool IsPagePrevBookview() const { return bBookview; }
- inline void SetPagePrevBookview(sal_Bool bSet) { bBookview = bSet; }
+ inline sal_Bool IsPagePrevBookview() const { return mbBookView; }
+ inline void SetPagePrevBookview(sal_Bool bSet) { mbBookView = bSet; }
sal_Bool IsAutoCompleteWords() const;