summaryrefslogtreecommitdiff
path: root/include/svx/svdview.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-01-17 17:05:29 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-01-17 18:45:15 +0100
commit03725013b64e74473e1a9e925b24927e7e61d412 (patch)
tree3f7c276d44feda7071b296f0c73b4b7c111b5011 /include/svx/svdview.hxx
parent20223e2374bb6a966e44471c224d22d968d19025 (diff)
bool improvements
Change-Id: Ic46fa46c200b94e2e6c5a073ba89b9aae5c14542
Diffstat (limited to 'include/svx/svdview.hxx')
-rw-r--r--include/svx/svdview.hxx38
1 files changed, 19 insertions, 19 deletions
diff --git a/include/svx/svdview.hxx b/include/svx/svdview.hxx
index cc6fcb06e60f..3fe604ddf27a 100644
--- a/include/svx/svdview.hxx
+++ b/include/svx/svdview.hxx
@@ -111,20 +111,20 @@ struct SVX_DLLPUBLIC SdrViewEvent
sal_uInt16 nHlplIdx;
sal_uInt16 nGlueId;
- unsigned bMouseDown : 1;
- unsigned bMouseUp : 1;
- unsigned bDoubleHdlSize : 1; // Doppelte Handlegroesse wg. TextEdit
- unsigned bIsAction : 1; // Action ist aktiv
- unsigned bIsTextEdit : 1; // TextEdit laeuft zur Zeit
- unsigned bTextEditHit : 1; // offene OutlinerView getroffen
- unsigned bAddMark : 1;
- unsigned bUnmark : 1;
- unsigned bPrevNextMark : 1;
- unsigned bMarkPrev : 1;
- unsigned bInsPointNewObj : 1;
- unsigned bDragWithCopy : 1;
- unsigned bCaptureMouse : 1;
- unsigned bReleaseMouse : 1;
+ bool bMouseDown : 1;
+ bool bMouseUp : 1;
+ bool bDoubleHdlSize : 1; // Doppelte Handlegroesse wg. TextEdit
+ bool bIsAction : 1; // Action ist aktiv
+ bool bIsTextEdit : 1; // TextEdit laeuft zur Zeit
+ bool bTextEditHit : 1; // offene OutlinerView getroffen
+ bool bAddMark : 1;
+ bool bUnmark : 1;
+ bool bPrevNextMark : 1;
+ bool bMarkPrev : 1;
+ bool bInsPointNewObj : 1;
+ bool bDragWithCopy : 1;
+ bool bCaptureMouse : 1;
+ bool bReleaseMouse : 1;
public:
SdrViewEvent();
@@ -159,11 +159,11 @@ class SVX_DLLPUBLIC SdrView: public SdrCreateView, public tools::WeakBase< SdrVi
{
friend class SdrPageView;
- unsigned bNoExtendedMouseDispatcher : 1;
- unsigned bNoExtendedKeyDispatcher : 1;
- unsigned bNoExtendedCommandDispatcher : 1;
- unsigned bTextEditOnObjectsWithoutTextIfTextTool : 1;
- unsigned mbMasterPagePaintCaching : 1;
+ bool bNoExtendedMouseDispatcher : 1;
+ bool bNoExtendedKeyDispatcher : 1;
+ bool bNoExtendedCommandDispatcher : 1;
+ bool bTextEditOnObjectsWithoutTextIfTextTool : 1;
+ bool mbMasterPagePaintCaching : 1;
protected:
SvtAccessibilityOptions maAccessibilityOptions;