summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/source/filter/lwpgrfobj.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-22 14:14:14 +0200
committerNoel Grandin <noel@peralex.com>2014-04-23 11:11:50 +0200
commit2692047aacef7b4288f995ce6ff2db5e16b71014 (patch)
tree2d43552ad1a01cfb6287d54f35b5ae3ca538393b /lotuswordpro/source/filter/lwpgrfobj.hxx
parentlingucomponent: sal_Bool->bool (diff)
downloadcore-2692047aacef7b4288f995ce6ff2db5e16b71014.tar.gz
core-2692047aacef7b4288f995ce6ff2db5e16b71014.zip
lotuswordpro: sal_Bool->bool
Change-Id: I017d284a2fbc8d50a9928c9d934ffe710b0c652f
Diffstat (limited to 'lotuswordpro/source/filter/lwpgrfobj.hxx')
-rw-r--r--lotuswordpro/source/filter/lwpgrfobj.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/lotuswordpro/source/filter/lwpgrfobj.hxx b/lotuswordpro/source/filter/lwpgrfobj.hxx
index 22e074d9ea0f..a2043c10c381 100644
--- a/lotuswordpro/source/filter/lwpgrfobj.hxx
+++ b/lotuswordpro/source/filter/lwpgrfobj.hxx
@@ -73,8 +73,8 @@ struct ImageProcessingData
sal_uInt8 nContrast;
sal_uInt8 nEdgeEnchancement;
sal_uInt8 nSmoothing;
- sal_Bool bAutoContrast;
- sal_Bool bInvertImage;
+ bool bAutoContrast;
+ bool bInvertImage;
ImageProcessingData()
{
@@ -82,8 +82,8 @@ struct ImageProcessingData
nContrast = 50;
nEdgeEnchancement = 0;
nSmoothing = 0;
- bAutoContrast = sal_False;
- bInvertImage= sal_False;
+ bAutoContrast = false;
+ bInvertImage= false;
}
};
@@ -108,7 +108,7 @@ private:
void XFConvertEquation(XFContentContainer* pCont);
void ParseChart(IXFStream* pOutputStream);
- sal_Bool IsGrafFormatValid();
+ bool IsGrafFormatValid();
// add by , 03/25/2005
std::vector <XFFrame*> m_vXFDrawObjects;
// end add