summaryrefslogtreecommitdiff
path: root/include/svx/gallery1.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-03-05 11:16:02 +0200
committerNoel Grandin <noel@peralex.com>2014-03-11 08:18:16 +0200
commit5e456cc3b30f2e099429f7075eda23e86871621e (patch)
tree97d50b238356b6e5187b505415fe844acae68326 /include/svx/gallery1.hxx
parent11bb658a60777243483fe8e682ca46e88855690a (diff)
svx: sal_Bool->bool
Change-Id: I061f1e15c816f8077c0fbb0abbc1474eb286796b
Diffstat (limited to 'include/svx/gallery1.hxx')
-rw-r--r--include/svx/gallery1.hxx38
1 files changed, 19 insertions, 19 deletions
diff --git a/include/svx/gallery1.hxx b/include/svx/gallery1.hxx
index 74ce015345e6..f60ee4089604 100644
--- a/include/svx/gallery1.hxx
+++ b/include/svx/gallery1.hxx
@@ -44,9 +44,9 @@ private:
INetURLObject aSdvURL;
INetURLObject aStrURL;
sal_uInt32 nId;
- sal_Bool bReadOnly;
- sal_Bool bModified;
- sal_Bool bThemeNameFromResource;
+ bool bReadOnly;
+ bool bModified;
+ bool bThemeNameFromResource;
GalleryThemeEntry();
INetURLObject ImplGetURLIgnoreCase( const INetURLObject& rURL ) const;
@@ -56,8 +56,8 @@ public:
GalleryThemeEntry( bool bCreateUniqueURL,
const INetURLObject& rBaseURL,
const OUString& rName,
- sal_Bool bReadOnly, sal_Bool bNewFile,
- sal_uInt32 nId, sal_Bool bThemeNameFromResource );
+ bool bReadOnly, bool bNewFile,
+ sal_uInt32 nId, bool bThemeNameFromResource );
~GalleryThemeEntry() {};
const OUString& GetThemeName() const { return aName; }
@@ -69,19 +69,19 @@ public:
OUString ReadStrFromIni(const OUString &aKeyName );
- sal_Bool IsReadOnly() const { return bReadOnly; }
- sal_Bool IsDefault() const;
+ bool IsReadOnly() const { return bReadOnly; }
+ bool IsDefault() const;
- sal_Bool IsHidden() const { return aName.match("private://gallery/hidden/"); }
+ bool IsHidden() const { return aName.match("private://gallery/hidden/"); }
- sal_Bool IsModified() const { return bModified; }
- void SetModified( sal_Bool bSet ) { bModified = ( bSet && !IsReadOnly() ); }
+ bool IsModified() const { return bModified; }
+ void SetModified( bool bSet ) { bModified = ( bSet && !IsReadOnly() ); }
void SetName( const OUString& rNewName );
- sal_Bool IsNameFromResource() const { return bThemeNameFromResource; }
+ bool IsNameFromResource() const { return bThemeNameFromResource; }
sal_uInt32 GetId() const { return nId; }
- void SetId( sal_uInt32 nNewId, sal_Bool bResetThemeName );
+ void SetId( sal_uInt32 nNewId, bool bResetThemeName );
};
typedef ::std::vector< GalleryThemeEntry* > GalleryThemeList;
@@ -109,10 +109,10 @@ private:
INetURLObject aRelURL;
INetURLObject aUserURL;
rtl_TextEncoding nReadTextEncoding;
- sal_Bool bMultiPath;
+ bool bMultiPath;
void ImplLoad( const OUString& rMultiPath );
- void ImplLoadSubDirs( const INetURLObject& rBaseURL, sal_Bool& rbIsReadOnly );
+ void ImplLoadSubDirs( const INetURLObject& rBaseURL, bool& rbIsReadOnly );
SVX_DLLPUBLIC GalleryThemeEntry* ImplGetThemeEntry( const OUString& rThemeName );
GalleryThemeEntry* ImplGetThemeEntry( sal_uIntPtr nThemeId );
@@ -132,12 +132,12 @@ public:
{ return nPos < aThemeList.size() ? aThemeList[ nPos ] : NULL; }
const GalleryThemeEntry* GetThemeInfo( const OUString& rThemeName ) { return ImplGetThemeEntry( rThemeName ); }
- SVX_DLLPUBLIC sal_Bool HasTheme( const OUString& rThemeName );
+ SVX_DLLPUBLIC bool HasTheme( const OUString& rThemeName );
OUString GetThemeName( sal_uIntPtr nThemeId ) const;
- SVX_DLLPUBLIC sal_Bool CreateTheme( const OUString& rThemeName );
- sal_Bool RenameTheme( const OUString& rOldName, const OUString& rNewName );
- SVX_DLLPUBLIC sal_Bool RemoveTheme( const OUString& rThemeName );
+ SVX_DLLPUBLIC bool CreateTheme( const OUString& rThemeName );
+ bool RenameTheme( const OUString& rOldName, const OUString& rNewName );
+ SVX_DLLPUBLIC bool RemoveTheme( const OUString& rThemeName );
SVX_DLLPUBLIC GalleryTheme* AcquireTheme( const OUString& rThemeName, SfxListener& rListener );
SVX_DLLPUBLIC void ReleaseTheme( GalleryTheme* pTheme, SfxListener& rListener );
@@ -147,7 +147,7 @@ public:
const INetURLObject& GetUserURL() const { return aUserURL; }
const INetURLObject& GetRelativeURL() const { return aRelURL; }
- sal_Bool IsMultiPath() const { return bMultiPath; }
+ bool IsMultiPath() const { return bMultiPath; }
};
#endif // INCLUDED_SVX_GALLERY1_HXX