summaryrefslogtreecommitdiff
path: root/include/svtools/colorcfg.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-03-20 09:26:52 +0200
committerNoel Grandin <noel@peralex.com>2014-03-24 08:12:08 +0200
commitb1de52241c1c2045ceab4ea3526f51f145be2930 (patch)
tree29f016cdbb4b1e8742edca44f4adf8427b7e5e96 /include/svtools/colorcfg.hxx
parent1a1fe47731bed27e974094a86b16f91e768c6dc0 (diff)
svtools: sal_Bool->bool
Change-Id: Iaa489318f25107e91fc8133523fbd9d724493314
Diffstat (limited to 'include/svtools/colorcfg.hxx')
-rw-r--r--include/svtools/colorcfg.hxx26
1 files changed, 13 insertions, 13 deletions
diff --git a/include/svtools/colorcfg.hxx b/include/svtools/colorcfg.hxx
index 9d5f5d2ec8c5..8e79226aecb7 100644
--- a/include/svtools/colorcfg.hxx
+++ b/include/svtools/colorcfg.hxx
@@ -84,10 +84,10 @@ class ColorConfig_Impl;
struct ColorConfigValue
{
- sal_Bool bIsVisible; //validity depends on the element type
+ bool bIsVisible; //validity depends on the element type
sal_Int32 nColor;
- ColorConfigValue() : bIsVisible(sal_False), nColor(0) {}
- sal_Bool operator !=(const ColorConfigValue& rCmp) const
+ ColorConfigValue() : bIsVisible(false), nColor(0) {}
+ bool operator !=(const ColorConfigValue& rCmp) const
{ return nColor != rCmp.nColor || bIsVisible != rCmp.bIsVisible;}
};
@@ -103,7 +103,7 @@ public:
// get the configured value - if bSmart is set the default color setting is provided
// instead of the automatic color
- ColorConfigValue GetColorValue(ColorConfigEntry eEntry, sal_Bool bSmart = sal_True)const;
+ ColorConfigValue GetColorValue(ColorConfigEntry eEntry, bool bSmart = true) const;
static Color GetDefaultColor(ColorConfigEntry eEntry);
void Reload();
};
@@ -111,23 +111,23 @@ public:
class SVT_DLLPUBLIC EditableColorConfig
{
ColorConfig_Impl* m_pImpl;
- sal_Bool m_bModified;
+ bool m_bModified;
public:
EditableColorConfig();
~EditableColorConfig();
- ::com::sun::star::uno::Sequence< OUString > GetSchemeNames() const;
- void DeleteScheme(const OUString& rScheme );
- void AddScheme(const OUString& rScheme );
- sal_Bool LoadScheme(const OUString& rScheme );
- const OUString& GetCurrentSchemeName()const;
+ ::css::uno::Sequence< OUString > GetSchemeNames() const;
+ void DeleteScheme(const OUString& rScheme );
+ void AddScheme(const OUString& rScheme );
+ bool LoadScheme(const OUString& rScheme );
+ const OUString& GetCurrentSchemeName() const;
void SetCurrentSchemeName(const OUString& rScheme);
- const ColorConfigValue& GetColorValue(ColorConfigEntry eEntry)const;
+ const ColorConfigValue& GetColorValue(ColorConfigEntry eEntry) const;
void SetColorValue(ColorConfigEntry eEntry, const ColorConfigValue& rValue);
void SetModified();
- void ClearModified(){m_bModified = sal_False;}
- sal_Bool IsModified()const{return m_bModified;}
+ void ClearModified() {m_bModified = false;}
+ bool IsModified() const {return m_bModified;}
void Commit();
void DisableBroadcast();