summaryrefslogtreecommitdiff
path: root/chart2/source/controller/dialogs/DataBrowserModel.cxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@collabora.com>2014-06-25 20:16:07 -0400
committerKohei Yoshida <kohei.yoshida@collabora.com>2014-06-25 20:24:09 -0400
commita532e2bba1a2400925e5930d20ab6fd573171085 (patch)
treea40e4ae1739d57b94b0eb89238cbc2115aab255e /chart2/source/controller/dialogs/DataBrowserModel.cxx
parent94c56f6a76ca55f21df9d58a88fc6061bf8c89af (diff)
Remove these pesky ::com::sun::star ....
Change-Id: I5c8e1418cc7e01426b67233e48289497a92868d3
Diffstat (limited to 'chart2/source/controller/dialogs/DataBrowserModel.cxx')
-rw-r--r--chart2/source/controller/dialogs/DataBrowserModel.cxx20
1 files changed, 8 insertions, 12 deletions
diff --git a/chart2/source/controller/dialogs/DataBrowserModel.cxx b/chart2/source/controller/dialogs/DataBrowserModel.cxx
index b41d02ed0ad9..56d6b41f76ac 100644
--- a/chart2/source/controller/dialogs/DataBrowserModel.cxx
+++ b/chart2/source/controller/dialogs/DataBrowserModel.cxx
@@ -222,25 +222,21 @@ bool lcl_ShowCategoriesAsDataLabel( const Reference< chart2::XDiagram > & xDiagr
struct DataBrowserModel::tDataColumn
{
- ::com::sun::star::uno::Reference<
- ::com::sun::star::chart2::XDataSeries > m_xDataSeries;
- sal_Int32 m_nIndexInDataSeries;
- OUString m_aUIRoleName;
- ::com::sun::star::uno::Reference<
- ::com::sun::star::chart2::data::XLabeledDataSequence > m_xLabeledDataSequence;
- eCellType m_eCellType;
- sal_Int32 m_nNumberFormatKey;
+ uno::Reference<chart2::XDataSeries> m_xDataSeries;
+ sal_Int32 m_nIndexInDataSeries;
+ OUString m_aUIRoleName;
+ uno::Reference<chart2::data::XLabeledDataSequence> m_xLabeledDataSequence;
+ eCellType m_eCellType;
+ sal_Int32 m_nNumberFormatKey;
// default CTOR
tDataColumn() : m_nIndexInDataSeries( -1 ), m_eCellType( TEXT ), m_nNumberFormatKey( 0 ) {}
// "full" CTOR
tDataColumn(
- const ::com::sun::star::uno::Reference<
- ::com::sun::star::chart2::XDataSeries > & xDataSeries,
+ const uno::Reference<chart2::XDataSeries> & xDataSeries,
sal_Int32 nIndexInDataSeries,
const OUString& aUIRoleName,
- ::com::sun::star::uno::Reference<
- ::com::sun::star::chart2::data::XLabeledDataSequence > xLabeledDataSequence,
+ const uno::Reference<chart2::data::XLabeledDataSequence>& xLabeledDataSequence,
eCellType aCellType,
sal_Int32 nNumberFormatKey ) :
m_xDataSeries( xDataSeries ),