summaryrefslogtreecommitdiff
path: root/sc/source/filter
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-13 12:34:06 +0200
committerNoel Grandin <noel@peralex.com>2014-02-14 14:15:14 +0200
commit0c0d65576730c8113e478ffd4f5158cf9d3d94bd (patch)
treed62aadc9a8aca382b2d2bd34c88d024438fd9dd1 /sc/source/filter
parentff8f4666f9324ab7f57a8c84a148360ef67d1ea9 (diff)
sal_Bool->bool
Change-Id: I7b43a5f352ffba2786593115a88945aacc2ce5ee
Diffstat (limited to 'sc/source/filter')
-rw-r--r--sc/source/filter/xml/XMLTableShapeResizer.cxx2
-rw-r--r--sc/source/filter/xml/XMLTableShapeResizer.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/filter/xml/XMLTableShapeResizer.cxx b/sc/source/filter/xml/XMLTableShapeResizer.cxx
index a92262abca3e..a5540680ec4a 100644
--- a/sc/source/filter/xml/XMLTableShapeResizer.cxx
+++ b/sc/source/filter/xml/XMLTableShapeResizer.cxx
@@ -49,7 +49,7 @@ ScMyOLEFixer::~ScMyOLEFixer()
{
}
-sal_Bool ScMyOLEFixer::IsOLE(uno::Reference< drawing::XShape >& rShape)
+bool ScMyOLEFixer::IsOLE(uno::Reference< drawing::XShape >& rShape)
{
return rShape->getShapeType() == "com.sun.star.drawing.OLE2Shape";
}
diff --git a/sc/source/filter/xml/XMLTableShapeResizer.hxx b/sc/source/filter/xml/XMLTableShapeResizer.hxx
index 2f3826f09fa7..f24b8f606007 100644
--- a/sc/source/filter/xml/XMLTableShapeResizer.hxx
+++ b/sc/source/filter/xml/XMLTableShapeResizer.hxx
@@ -50,7 +50,7 @@ public:
ScMyOLEFixer(ScXMLImport& rImport);
~ScMyOLEFixer();
- static sal_Bool IsOLE(com::sun::star::uno::Reference< com::sun::star::drawing::XShape >& rShape);
+ static bool IsOLE(com::sun::star::uno::Reference< com::sun::star::drawing::XShape >& rShape);
void AddOLE(com::sun::star::uno::Reference <com::sun::star::drawing::XShape>& rShape,
const OUString &rRangeList);
void FixupOLEs();