summaryrefslogtreecommitdiff
path: root/sd/inc
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2013-10-25 10:54:51 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2013-10-25 10:56:31 +0900
commit324b47aabcddc75e98ef56769e24362668e26ebc (patch)
tree7558eae44646d7164e68df57e5c33ff27616f8df /sd/inc
parentb7e5ab6f65eb682bfa200459d745d3bc4056e42a (diff)
sal_Bool to bool
Change-Id: I4fe71f0418b3c2c9b0ca261c5b24fe2d093f7bb9
Diffstat (limited to 'sd/inc')
-rw-r--r--sd/inc/drawdoc.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sd/inc/drawdoc.hxx b/sd/inc/drawdoc.hxx
index 90405341fbf5..d8e2de742f37 100644
--- a/sd/inc/drawdoc.hxx
+++ b/sd/inc/drawdoc.hxx
@@ -151,8 +151,8 @@ private:
SdCustomShowList* mpCustomShowList;
::sd::DrawDocShell* mpDocSh;
SdTransferable * mpCreatingTransferable;
- sal_Bool mbHasOnlineSpellErrors;
- sal_Bool mbInitialOnlineSpellingEnabled;
+ bool mbHasOnlineSpellErrors;
+ bool mbInitialOnlineSpellingEnabled;
OUString maBookmarkFile;
::sd::DrawDocShellRef mxBookmarkDocShRef;
@@ -160,7 +160,7 @@ private:
::com::sun::star::uno::Reference< ::com::sun::star::presentation::XPresentation2 > mxPresentation;
- sal_Bool mbNewOrLoadCompleted;
+ bool mbNewOrLoadCompleted;
sal_Bool mbOnlineSpell;
sal_Bool mbSummationOfParagraphs;
@@ -171,7 +171,7 @@ private:
LanguageType meLanguageCTL;
SvxNumType mePageNumType;
::sd::DrawDocShellRef mxAllocedDocShRef; // => AllocModel()
- sal_Bool mbAllocDocSh; // => AllocModel()
+ bool mbAllocDocSh; // => AllocModel()
DocumentType meDocType;
CharClass* mpCharClass;
::com::sun::star::lang::Locale* mpLocale;
@@ -229,7 +229,7 @@ public:
DocumentType GetDocumentType() const { return meDocType; }
- void SetAllocDocSh(sal_Bool bAlloc);
+ void SetAllocDocSh(bool bAlloc);
void CreatingDataObj( SdTransferable* pTransferable ) { mpCreatingTransferable = pTransferable; }
@@ -426,7 +426,7 @@ public:
void NewOrLoadCompleted(DocCreationMode eMode);
void NewOrLoadCompleted( SdPage* pPage, SdStyleSheetPool* pSPool );
- sal_Bool IsNewOrLoadCompleted() const {return mbNewOrLoadCompleted; }
+ bool IsNewOrLoadCompleted() const {return mbNewOrLoadCompleted; }
::sd::FrameView* GetFrameView(sal_uLong nPos) {
return nPos < maFrameViewList.size() ? maFrameViewList[nPos] : NULL; }