summaryrefslogtreecommitdiff
path: root/starmath/source/mathmlimport.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-24 12:22:08 +0200
committerNoel Grandin <noel@peralex.com>2014-04-30 08:43:41 +0200
commit4c73963171b1a7a837e4bfc75ae4e0303af7d117 (patch)
tree1a78e9dd12dc66c28865500dc24ae72bbfaab461 /starmath/source/mathmlimport.hxx
parent7e9bb77c356e3888e4bf697f4ecd69e642211c75 (diff)
starmath: sal_Bool->bool
Change-Id: I09e833765294937a75feb5cdd92cce4aa8373c24
Diffstat (limited to 'starmath/source/mathmlimport.hxx')
-rw-r--r--starmath/source/mathmlimport.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/starmath/source/mathmlimport.hxx b/starmath/source/mathmlimport.hxx
index 5b2d2476ffcf..44e4ce1a2c34 100644
--- a/starmath/source/mathmlimport.hxx
+++ b/starmath/source/mathmlimport.hxx
@@ -54,7 +54,7 @@ public:
::com::sun::star::uno::Reference<
::com::sun::star::beans::XPropertySet > & rPropSet,
const sal_Char* pFilterName,
- sal_Bool bEncrypted );
+ bool bEncrypted );
sal_uLong ReadThroughComponent(
const ::com::sun::star::uno::Reference< ::com::sun::star::embed::XStorage >& xStorage,
@@ -82,7 +82,7 @@ class SmXMLImport : public SvXMLImport
SvXMLTokenMap *pColorTokenMap;
SmNodeStack aNodeStack;
- sal_Bool bSuccess;
+ bool bSuccess;
OUString aText;
public:
@@ -252,7 +252,7 @@ public:
return result;
}
- sal_Bool GetSuccess() { return bSuccess; }
+ bool GetSuccess() { return bSuccess; }
SAL_WARN_UNUSED_RESULT OUString GetText() { return aText; }
void SetText(const OUString &rStr) { aText = rStr; }