summaryrefslogtreecommitdiff
path: root/xmloff/source/chart/SchXMLAxisContext.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source/chart/SchXMLAxisContext.hxx')
-rw-r--r--xmloff/source/chart/SchXMLAxisContext.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/xmloff/source/chart/SchXMLAxisContext.hxx b/xmloff/source/chart/SchXMLAxisContext.hxx
index a734d3357ae8..bfc5c3e76dbe 100644
--- a/xmloff/source/chart/SchXMLAxisContext.hxx
+++ b/xmloff/source/chart/SchXMLAxisContext.hxx
@@ -27,7 +27,7 @@ class SchXMLAxisContext : public SvXMLImportContext
public:
SchXMLAxisContext( SchXMLImportHelper& rImpHelper,
SvXMLImport& rImport, const OUString& rLocalName,
- ::com::sun::star::uno::Reference< ::com::sun::star::chart::XDiagram > xDiagram,
+ css::uno::Reference< css::chart::XDiagram > xDiagram,
std::vector< SchXMLAxis >& aAxes,
OUString& rCategoriesAddress,
bool bAddMissingXAxisForNetCharts,
@@ -36,27 +36,27 @@ public:
bool& rbAxisPositionAttributeImported );
virtual ~SchXMLAxisContext();
- virtual void StartElement( const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList ) override;
+ virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override;
virtual void EndElement() override;
virtual SvXMLImportContext* CreateChildContext(
sal_uInt16 nPrefix,
const OUString& rLocalName,
- const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList ) override;
+ const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override;
- static void CorrectAxisPositions( const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartDocument >& xNewDoc,
+ static void CorrectAxisPositions( const css::uno::Reference< css::chart2::XChartDocument >& xNewDoc,
const OUString& rChartTypeServiceName,
const OUString& rODFVersionOfFile,
bool bAxisPositionAttributeImported );
private:
SchXMLImportHelper& m_rImportHelper;
- ::com::sun::star::uno::Reference< ::com::sun::star::chart::XDiagram > m_xDiagram;
+ css::uno::Reference< css::chart::XDiagram > m_xDiagram;
SchXMLAxis m_aCurrentAxis;
std::vector< SchXMLAxis >& m_rAxes;
- ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > m_xAxisProps;
+ css::uno::Reference< css::beans::XPropertySet > m_xAxisProps;
OUString m_aAutoStyleName;
OUString& m_rCategoriesAddress;
- sal_Int32 m_nAxisType;//::com::sun::star::chart::ChartAxisType
+ sal_Int32 m_nAxisType;//css::chart::ChartAxisType
bool m_bAxisTypeImported;
bool m_bDateScaleImported;
bool m_bAddMissingXAxisForNetCharts; //to correct errors from older versions
@@ -64,7 +64,7 @@ private:
bool m_bAdaptXAxisOrientationForOld2DBarCharts; //to correct different behaviour from older versions
bool& m_rbAxisPositionAttributeImported;
- ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShape > getTitleShape();
+ css::uno::Reference< css::drawing::XShape > getTitleShape();
void CreateGrid( const OUString& sAutoStyleName, bool bIsMajor );
void CreateAxis();
void SetAxisTitle();