From f068f50b5a35ed281cc50fa4570bcaf83fdb1af8 Mon Sep 17 00:00:00 2001 From: Kohei Yoshida Date: Tue, 31 Jan 2012 17:13:50 -0500 Subject: Re-organized boolean data members. --- svx/inc/svx/svdmodel.hxx | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) (limited to 'svx') diff --git a/svx/inc/svx/svdmodel.hxx b/svx/inc/svx/svdmodel.hxx index 2b74913f2d99..59fbf176b142 100644 --- a/svx/inc/svx/svdmodel.hxx +++ b/svx/inc/svx/svdmodel.hxx @@ -178,11 +178,9 @@ protected: String aUIUnitStr; // see above Fraction aUIUnitFact; // see above int nUIUnitKomma; // see above - bool bUIOnlyKomma; // see above SdrLayerAdmin* pLayerAdmin; SfxItemPool* pItemPool; - bool bMyPool; // zum Aufraeumen von pMyPool ab 303a comphelper::IEmbeddedHelper* m_pEmbeddedHelper; // helper for embedded objects to get rid of the SfxObjectShell SdrOutliner* pDrawOutliner; // ein Outliner zur Textausgabe @@ -199,29 +197,31 @@ protected: Container* pRedoStack; SdrUndoGroup* pAktUndoGroup; // Fuer mehrstufige sal_uInt16 nUndoLevel; // Undo-Klammerung - bool mbUndoEnabled; // If false no undo is recorded or we are during the execution of an undo action sal_uInt16 nProgressPercent; // fuer den ProgressBar-Handler sal_uInt16 nLoadVersion; // Versionsnummer der geladenen Datei - bool bExtColorTable; // Keinen eigenen ColorTable - sal_Bool mbChanged; - bool bInfoChanged; - bool bPagNumsDirty; - bool bMPgNumsDirty; - bool bPageNotValid; // TRUE=Doc ist nur ObjektTraeger. Page ist nicht gueltig. - bool bSavePortable; // Metafiles portabel speichern - bool bNoBitmapCaching; // Bitmaps fuer Screenoutput cachen - bool bReadOnly; - bool bTransparentTextFrames; - bool bSaveCompressed; - bool bSwapGraphics; - bool bPasteResize; // Objekte werden gerade resized wegen Paste mit anderem MapMode - bool bSaveOLEPreview; // save preview metafile of OLE objects + bool bMyPool:1; // zum Aufraeumen von pMyPool ab 303a + bool bUIOnlyKomma:1; // see eUIUnit + bool mbUndoEnabled:1; // If false no undo is recorded or we are during the execution of an undo action + bool bExtColorTable:1; // Keinen eigenen ColorTable + bool mbChanged:1; + bool bInfoChanged:1; + bool bPagNumsDirty:1; + bool bMPgNumsDirty:1; + bool bPageNotValid:1; // TRUE=Doc ist nur ObjektTraeger. Page ist nicht gueltig. + bool bSavePortable:1; // Metafiles portabel speichern + bool bNoBitmapCaching:1; // Bitmaps fuer Screenoutput cachen + bool bReadOnly:1; + bool bTransparentTextFrames:1; + bool bSaveCompressed:1; + bool bSwapGraphics:1; + bool bPasteResize:1; // Objekte werden gerade resized wegen Paste mit anderem MapMode + bool bSaveOLEPreview:1; // save preview metafile of OLE objects + bool bSaveNative:1; + bool bStarDrawPreviewMode:1; sal_uInt16 nStreamCompressMode; // Komprimiert schreiben? sal_uInt16 nStreamNumberFormat; sal_uInt16 nDefaultTabulator; sal_uInt32 nMaxUndoCount; - bool bSaveNative; - sal_Bool bStarDrawPreviewMode; ////////////////////////////////////////////////////////////////////////////// -- cgit