summaryrefslogtreecommitdiff
path: root/sc/source/filter/xml/XMLTableSourceContext.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-10-22 16:06:44 +0200
committerNoel Grandin <noel@peralex.com>2014-10-23 12:36:16 +0200
commit6a097a7d964a22fbff8bfa9552c77b11447691bb (patch)
tree5c86335f81902bae4f6f765893bc847d89ee24d0 /sc/source/filter/xml/XMLTableSourceContext.hxx
parent229eed079c675e70118370044ae91a69c60d044e (diff)
loplugin: cstylecast
Change-Id: I8c7cd4c2cdc134556c2c664a22e2048b51a3b98e
Diffstat (limited to 'sc/source/filter/xml/XMLTableSourceContext.hxx')
-rw-r--r--sc/source/filter/xml/XMLTableSourceContext.hxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/sc/source/filter/xml/XMLTableSourceContext.hxx b/sc/source/filter/xml/XMLTableSourceContext.hxx
index 31415e9630c6..1c97efa3a138 100644
--- a/sc/source/filter/xml/XMLTableSourceContext.hxx
+++ b/sc/source/filter/xml/XMLTableSourceContext.hxx
@@ -22,8 +22,7 @@
#include <xmloff/xmlictxt.hxx>
#include <com/sun/star/sheet/SheetLinkMode.hpp>
-
-class ScXMLImport;
+#include "xmlimprt.hxx"
class ScXMLTableSourceContext : public SvXMLImportContext
{
@@ -34,8 +33,8 @@ class ScXMLTableSourceContext : public SvXMLImportContext
sal_Int32 nRefresh;
com::sun::star::sheet::SheetLinkMode nMode;
- const ScXMLImport& GetScImport() const { return (const ScXMLImport&)GetImport(); }
- ScXMLImport& GetScImport() { return (ScXMLImport&)GetImport(); }
+ const ScXMLImport& GetScImport() const { return static_cast<const ScXMLImport&>(GetImport()); }
+ ScXMLImport& GetScImport() { return static_cast<ScXMLImport&>(GetImport()); }
public:
ScXMLTableSourceContext( ScXMLImport& rImport, sal_uInt16 nPrfx,
const OUString& rLName,