summaryrefslogtreecommitdiff
path: root/embeddedobj/source/inc/commonembobj.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-17 11:39:18 +0200
committerNoel Grandin <noel@peralex.com>2014-04-22 09:53:13 +0200
commit584e8c8c3c81c4e475905c687b377676334b393b (patch)
tree3ac0dee881c06adafa632715d9ea22fb811a425f /embeddedobj/source/inc/commonembobj.hxx
parentc7d6d3d241473d43fb8f7486805c0cfda2d66257 (diff)
embeddedobj: sal_Bool->bool
Change-Id: Ie3465a34963c768945b1ee7f5939ea1f233d3528
Diffstat (limited to 'embeddedobj/source/inc/commonembobj.hxx')
-rw-r--r--embeddedobj/source/inc/commonembobj.hxx22
1 files changed, 11 insertions, 11 deletions
diff --git a/embeddedobj/source/inc/commonembobj.hxx b/embeddedobj/source/inc/commonembobj.hxx
index 861450f5b740..cdeab464ebaa 100644
--- a/embeddedobj/source/inc/commonembobj.hxx
+++ b/embeddedobj/source/inc/commonembobj.hxx
@@ -86,10 +86,10 @@ protected:
::cppu::OMultiTypeInterfaceContainerHelper* m_pInterfaceContainer;
- sal_Bool m_bReadOnly;
+ bool m_bReadOnly;
- sal_Bool m_bDisposed;
- sal_Bool m_bClosed;
+ bool m_bDisposed;
+ bool m_bClosed;
sal_Int32 m_nObjectState;
sal_Int32 m_nTargetState; // should be -1 exept during state changing
@@ -118,11 +118,11 @@ protected:
OUString m_aContainerName;
OUString m_aDefaultParentBaseURL;
OUString m_aModuleName;
- sal_Bool m_bEmbeddedScriptSupport;
- sal_Bool m_bDocumentRecoverySupport;
+ bool m_bEmbeddedScriptSupport;
+ bool m_bDocumentRecoverySupport;
// following information will be used between SaveAs and SaveCompleted
- sal_Bool m_bWaitSaveCompleted;
+ bool m_bWaitSaveCompleted;
OUString m_aNewEntryName;
::com::sun::star::uno::Reference< ::com::sun::star::embed::XStorage > m_xNewParentStorage;
::com::sun::star::uno::Reference< ::com::sun::star::embed::XStorage > m_xNewObjectStorage;
@@ -132,7 +132,7 @@ protected:
::com::sun::star::awt::Rectangle m_aOwnRectangle;
::com::sun::star::awt::Rectangle m_aClipRectangle;
- sal_Bool m_bIsLink;
+ bool m_bIsLink;
// embedded object related stuff
OUString m_aEntryName;
@@ -143,12 +143,12 @@ protected:
// link related stuff
OUString m_aLinkURL;
OUString m_aLinkFilterName;
- sal_Bool m_bLinkHasPassword;
+ bool m_bLinkHasPassword;
OUString m_aLinkPassword;
::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > m_xParent;
- sal_Bool m_bHasClonedSize; // the object has cached size
+ bool m_bHasClonedSize; // the object has cached size
::com::sun::star::awt::Size m_aClonedSize;
sal_Int32 m_nClonedMapUnit;
::com::sun::star::awt::Size m_aDefaultSizeForChart_In_100TH_MM;//#i103460# charts do not necessaryly have an own size within ODF files, in this case they need to use the size settings from the surrounding frame, which is made available with this member
@@ -182,7 +182,7 @@ private:
void Deactivate();
- void StateChangeNotification_Impl( sal_Bool bBeforeChange, sal_Int32 nOldState, sal_Int32 nNewState,::osl::ResettableMutexGuard& _rGuard );
+ void StateChangeNotification_Impl( bool bBeforeChange, sal_Int32 nOldState, sal_Int32 nNewState,::osl::ResettableMutexGuard& _rGuard );
void SwitchStateTo_Impl( sal_Int32 nNextState );
@@ -199,7 +199,7 @@ private:
sal_Int32 nStorageVersion,
const OUString& aBaseURL,
const OUString& aHierarchName,
- sal_Bool bAttachToStorage );
+ bool bAttachToStorage );
void SwitchDocToStorage_Impl(
const ::com::sun::star::uno::Reference< ::com::sun::star::document::XStorageBasedDocument >& xDoc,