chart2/source/controller/dialogs/DataBrowserModel.cxx |   20 +++++++-----------
 1 file changed, 8 insertions(+), 12 deletions(-)

New commits:
commit a532e2bba1a2400925e5930d20ab6fd573171085
Author: Kohei Yoshida <kohei.yosh...@collabora.com>
Date:   Wed Jun 25 20:16:07 2014 -0400

    Remove these pesky ::com::sun::star ....
    
    Change-Id: I5c8e1418cc7e01426b67233e48289497a92868d3

diff --git a/chart2/source/controller/dialogs/DataBrowserModel.cxx 
b/chart2/source/controller/dialogs/DataBrowserModel.cxx
index b41d02e..56d6b41 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 ),
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to