diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2012-11-15 00:01:03 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2012-11-15 00:01:58 +0900 |
commit | 5bac137d48c2436316043ca2be558b9eb00fe87d (patch) | |
tree | 04a4eefa9678e7d63de4f8aee71a9fd624c21af9 /sw/inc | |
parent | 62af61b8f076c00eb045dca1c46275882e17ce6b (diff) |
sal_Bool to bool
Change-Id: I95a8effcc90a9651e30dc43f8db6edeaa7ace5ef
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/doc.hxx | 4 | ||||
-rw-r--r-- | sw/inc/editsh.hxx | 2 | ||||
-rw-r--r-- | sw/inc/sortopt.hxx | 6 |
3 files changed, 6 insertions, 6 deletions
diff --git a/sw/inc/doc.hxx b/sw/inc/doc.hxx index ca5efc9dd9f8..28f06ff8832c 100644 --- a/sw/inc/doc.hxx +++ b/sw/inc/doc.hxx @@ -1303,8 +1303,8 @@ public: void ReplaceCompatabilityOptions(const SwDoc& rSource); /// Query if style (paragraph- / character- / frame- / page-) is used. - sal_Bool IsUsed( const SwModify& ) const; - sal_Bool IsUsed( const SwNumRule& ) const; + bool IsUsed( const SwModify& ) const; + bool IsUsed( const SwNumRule& ) const; /// Set name of newly loaded document template. sal_uInt16 SetDocPattern( const String& rPatternName ); diff --git a/sw/inc/editsh.hxx b/sw/inc/editsh.hxx index a0c0ebbeaa23..d1a0fe99d712 100644 --- a/sw/inc/editsh.hxx +++ b/sw/inc/editsh.hxx @@ -363,7 +363,7 @@ public: SwPageDesc* GetPageDescFromPool( sal_uInt16 nId ); /// Query if the paragraph-/character-/frame-/page-style is used. - sal_Bool IsUsed( const SwModify& ) const; + bool IsUsed( const SwModify& ) const; /// @return required automatic format. SwFrmFmt* GetFrmFmtFromPool( sal_uInt16 nId ) diff --git a/sw/inc/sortopt.hxx b/sw/inc/sortopt.hxx index 2fa462314565..a0da917e2c49 100644 --- a/sw/inc/sortopt.hxx +++ b/sw/inc/sortopt.hxx @@ -45,7 +45,7 @@ struct SW_DLLPUBLIC SwSortKey String sSortType; SwSortOrder eSortOrder; sal_uInt16 nColumnId; - sal_Bool bIsNumeric; + bool bIsNumeric; }; typedef std::vector<SwSortKey*> SwSortKeys; @@ -60,8 +60,8 @@ struct SW_DLLPUBLIC SwSortOptions SwSortDirection eDirection; sal_Unicode cDeli; sal_uInt16 nLanguage; - sal_Bool bTable; - sal_Bool bIgnoreCase; + bool bTable; + bool bIgnoreCase; }; #endif // _SORTOPT_HXX |