summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/xfilter/xftable.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/xfilter/xftable.hxx
parentca56379f27c53d4fa015d7adbb9494186f506de6 (diff)
lotuswordpro: sal_Bool->bool
Change-Id: I017d284a2fbc8d50a9928c9d934ffe710b0c652f
Diffstat (limited to 'lotuswordpro/source/filter/xfilter/xftable.hxx')
-rw-r--r--lotuswordpro/source/filter/xfilter/xftable.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/lotuswordpro/source/filter/xfilter/xftable.hxx b/lotuswordpro/source/filter/xfilter/xftable.hxx
index 7210df3730e7..f44c55ed610a 100644
--- a/lotuswordpro/source/filter/xfilter/xftable.hxx
+++ b/lotuswordpro/source/filter/xfilter/xftable.hxx
@@ -104,7 +104,7 @@ public:
sal_Int32 GetColumnCount();
- sal_Bool IsSubTable();
+ bool IsSubTable();
void Normalize();
@@ -119,7 +119,7 @@ public:
private:
OUString m_strName;
- sal_Bool m_bSubTable;
+ bool m_bSubTable;
XFCell *m_pOwnerCell;
XFContentContainer m_aHeaderRows;
std::map<sal_uInt16, XFRow*> m_aRows;
@@ -140,7 +140,7 @@ inline void XFTable::SetOwnerCell(XFCell *pCell)
m_bSubTable = (pCell!=NULL);
}
-inline sal_Bool XFTable::IsSubTable()
+inline bool XFTable::IsSubTable()
{
return m_bSubTable;
}