diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2012-10-10 07:34:19 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2012-10-10 07:37:12 +0900 |
commit | 7e1d03f0f6b68d4a955a6b5df94be77307e58476 (patch) | |
tree | 5bd99f6a727679d886e044ef0313ffa1cf13e417 /sw/inc | |
parent | 61b94e06ef5a822e0dbe24528bc5d4d112a2547b (diff) |
sal_Bool to bool
Change-Id: I2549e597bc11d0a4b4bcdc42c77914dda01a1c5f
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/SwStyleNameMapper.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/inc/SwStyleNameMapper.hxx b/sw/inc/SwStyleNameMapper.hxx index 4142ff9a518a..34797cabd55d 100644 --- a/sw/inc/SwStyleNameMapper.hxx +++ b/sw/inc/SwStyleNameMapper.hxx @@ -138,20 +138,20 @@ protected: const SwTableEntry *pTable, sal_uInt8 nCount); - static void fillNameFromId ( sal_uInt16 nId, String &rName, sal_Bool bProgName ); - static const String& getNameFromId ( sal_uInt16 nId, const String &rName, sal_Bool bProgName ); - static const NameToIdHash& getHashTable ( SwGetPoolIdFromName, sal_Bool bProgName ); + static void fillNameFromId ( sal_uInt16 nId, String &rName, bool bProgName ); + static const String& getNameFromId ( sal_uInt16 nId, const String &rName, bool bProgName ); + static const NameToIdHash& getHashTable ( SwGetPoolIdFromName, bool bProgName ); static bool SuffixIsUser ( const String & rString ); static void CheckSuffixAndDelete ( String & rString ); public: // This gets the UI Name from the programmatic name static const String& GetUIName ( const String& rName, SwGetPoolIdFromName ); - static void FillUIName ( const String& rName, String& rFillName, SwGetPoolIdFromName, sal_Bool bDisambiguate = sal_False ); + static void FillUIName ( const String& rName, String& rFillName, SwGetPoolIdFromName, bool bDisambiguate = false ); // Get the programmatic Name from the UI name static const String& GetProgName ( const String& rName, SwGetPoolIdFromName ); - static void FillProgName ( const String& rName, String& rFillName, SwGetPoolIdFromName, sal_Bool bDisambiguate = sal_False ); + static void FillProgName ( const String& rName, String& rFillName, SwGetPoolIdFromName, bool bDisambiguate = false ); // This gets the UI Name from the Pool ID SW_DLLPUBLIC static void FillUIName ( sal_uInt16 nId, String& rFillName ); |