summaryrefslogtreecommitdiff
path: root/chart2/source/model/main/ChartModel.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'chart2/source/model/main/ChartModel.cxx')
-rw-r--r--chart2/source/model/main/ChartModel.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/chart2/source/model/main/ChartModel.cxx b/chart2/source/model/main/ChartModel.cxx
index a73aa04f49ef..c0289c3af548 100644
--- a/chart2/source/model/main/ChartModel.cxx
+++ b/chart2/source/model/main/ChartModel.cxx
@@ -887,7 +887,7 @@ Reference< chart2::data::XRangeHighlighter > SAL_CALL ChartModel::getRangeHighli
{
if( ! m_xRangeHighlighter.is())
{
- uno::Reference< view::XSelectionSupplier > xSelSupp( this->getCurrentController(), uno::UNO_QUERY );
+ uno::Reference< view::XSelectionSupplier > xSelSupp( getCurrentController(), uno::UNO_QUERY );
if( xSelSupp.is() )
m_xRangeHighlighter.set( ChartModelHelper::createRangeHighlighter( xSelSupp ));
}
@@ -1036,7 +1036,7 @@ embed::VisualRepresentation SAL_CALL ChartModel::getPreferredVisualRepresentatio
//get view from old api wrapper
Reference< datatransfer::XTransferable > xTransferable(
- this->createInstance( CHART_VIEW_SERVICE_NAME ), uno::UNO_QUERY );
+ createInstance( CHART_VIEW_SERVICE_NAME ), uno::UNO_QUERY );
if( xTransferable.is() )
{
datatransfer::DataFlavor aDataFlavor( lcl_aGDIMetaFileMIMEType,
@@ -1071,13 +1071,13 @@ embed::VisualRepresentation SAL_CALL ChartModel::getPreferredVisualRepresentatio
uno::Any SAL_CALL ChartModel::getTransferData( const datatransfer::DataFlavor& aFlavor )
{
uno::Any aResult;
- if( this->isDataFlavorSupported( aFlavor ))
+ if( isDataFlavorSupported( aFlavor ))
{
try
{
//get view from old api wrapper
Reference< datatransfer::XTransferable > xTransferable(
- this->createInstance( CHART_VIEW_SERVICE_NAME ), uno::UNO_QUERY );
+ createInstance( CHART_VIEW_SERVICE_NAME ), uno::UNO_QUERY );
if( xTransferable.is() &&
xTransferable->isDataFlavorSupported( aFlavor ))
{
@@ -1289,7 +1289,7 @@ uno::Sequence< Reference< chart2::data::XLabeledDataSequence > > SAL_CALL ChartM
OUString SAL_CALL ChartModel::dump()
{
uno::Reference< qa::XDumper > xDumper(
- this->createInstance( CHART_VIEW_SERVICE_NAME ), uno::UNO_QUERY );
+ createInstance( CHART_VIEW_SERVICE_NAME ), uno::UNO_QUERY );
if (xDumper.is())
return xDumper->dump();