Kaydet (Commit) a532e2bb authored tarafından Kohei Yoshida's avatar Kohei Yoshida

Remove these pesky ::com::sun::star ....

Change-Id: I5c8e1418cc7e01426b67233e48289497a92868d3
üst 94c56f6a
...@@ -222,25 +222,21 @@ bool lcl_ShowCategoriesAsDataLabel( const Reference< chart2::XDiagram > & xDiagr ...@@ -222,25 +222,21 @@ bool lcl_ShowCategoriesAsDataLabel( const Reference< chart2::XDiagram > & xDiagr
struct DataBrowserModel::tDataColumn struct DataBrowserModel::tDataColumn
{ {
::com::sun::star::uno::Reference< uno::Reference<chart2::XDataSeries> m_xDataSeries;
::com::sun::star::chart2::XDataSeries > m_xDataSeries; sal_Int32 m_nIndexInDataSeries;
sal_Int32 m_nIndexInDataSeries; OUString m_aUIRoleName;
OUString m_aUIRoleName; uno::Reference<chart2::data::XLabeledDataSequence> m_xLabeledDataSequence;
::com::sun::star::uno::Reference< eCellType m_eCellType;
::com::sun::star::chart2::data::XLabeledDataSequence > m_xLabeledDataSequence; sal_Int32 m_nNumberFormatKey;
eCellType m_eCellType;
sal_Int32 m_nNumberFormatKey;
// default CTOR // default CTOR
tDataColumn() : m_nIndexInDataSeries( -1 ), m_eCellType( TEXT ), m_nNumberFormatKey( 0 ) {} tDataColumn() : m_nIndexInDataSeries( -1 ), m_eCellType( TEXT ), m_nNumberFormatKey( 0 ) {}
// "full" CTOR // "full" CTOR
tDataColumn( tDataColumn(
const ::com::sun::star::uno::Reference< const uno::Reference<chart2::XDataSeries> & xDataSeries,
::com::sun::star::chart2::XDataSeries > & xDataSeries,
sal_Int32 nIndexInDataSeries, sal_Int32 nIndexInDataSeries,
const OUString& aUIRoleName, const OUString& aUIRoleName,
::com::sun::star::uno::Reference< const uno::Reference<chart2::data::XLabeledDataSequence>& xLabeledDataSequence,
::com::sun::star::chart2::data::XLabeledDataSequence > xLabeledDataSequence,
eCellType aCellType, eCellType aCellType,
sal_Int32 nNumberFormatKey ) : sal_Int32 nNumberFormatKey ) :
m_xDataSeries( xDataSeries ), m_xDataSeries( xDataSeries ),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment