[Libreoffice-commits] core.git: chart2/source

Markus Mohrhard markus.mohrhard at googlemail.com
Sun Aug 3 13:59:04 PDT 2014


 chart2/source/controller/itemsetwrapper/GraphicPropertyItemConverter.cxx |   16 +++++-----
 1 file changed, 8 insertions(+), 8 deletions(-)

New commits:
commit 88ba62b0e0b6cfdefeff2752713103c6e154302c
Author: Markus Mohrhard <markus.mohrhard at googlemail.com>
Date:   Fri Aug 1 00:46:00 2014 +0200

    cosmetic clean-up
    
    Change-Id: I7b34e021c9f193643c89f20dc1ba42aad8e065d6
    Reviewed-on: https://gerrit.libreoffice.org/10715
    Reviewed-by: Markus Mohrhard <markus.mohrhard at googlemail.com>
    Tested-by: Markus Mohrhard <markus.mohrhard at googlemail.com>

diff --git a/chart2/source/controller/itemsetwrapper/GraphicPropertyItemConverter.cxx b/chart2/source/controller/itemsetwrapper/GraphicPropertyItemConverter.cxx
index aeafa4e..b0d6da8 100644
--- a/chart2/source/controller/itemsetwrapper/GraphicPropertyItemConverter.cxx
+++ b/chart2/source/controller/itemsetwrapper/GraphicPropertyItemConverter.cxx
@@ -322,9 +322,9 @@ void GraphicPropertyItemConverter::FillSpecialItem(
 
                 // translate model name to UI-name for predefined entries, so
                 // that the correct entry is chosen in the list of UI-names
-                XLineDashItem * pItemToPut = aItem.checkForUniqueItem( & m_rDrawModel );
+                XLineDashItem* pItemToPut = aItem.checkForUniqueItem( & m_rDrawModel );
 
-                rOutItemSet.Put( * pItemToPut );
+                rOutItemSet.Put( *pItemToPut );
             }
         break;
 
@@ -345,9 +345,9 @@ void GraphicPropertyItemConverter::FillSpecialItem(
 
                 // translate model name to UI-name for predefined entries, so
                 // that the correct entry is chosen in the list of UI-names
-                XFillGradientItem * pItemToPut = aItem.checkForUniqueItem( & m_rDrawModel );
+                XFillGradientItem* pItemToPut = aItem.checkForUniqueItem( & m_rDrawModel );
 
-                rOutItemSet.Put( * pItemToPut );
+                rOutItemSet.Put( *pItemToPut );
             }
         break;
 
@@ -368,9 +368,9 @@ void GraphicPropertyItemConverter::FillSpecialItem(
 
                 // translate model name to UI-name for predefined entries, so
                 // that the correct entry is chosen in the list of UI-names
-                XFillHatchItem * pItemToPut = aItem.checkForUniqueItem( & m_rDrawModel );
+                XFillHatchItem* pItemToPut = aItem.checkForUniqueItem( & m_rDrawModel );
 
-                rOutItemSet.Put( * pItemToPut );
+                rOutItemSet.Put( *pItemToPut );
             }
         break;
 
@@ -386,9 +386,9 @@ void GraphicPropertyItemConverter::FillSpecialItem(
 
                 // translate model name to UI-name for predefined entries, so
                 // that the correct entry is chosen in the list of UI-names
-                XFillBitmapItem * pItemToPut = aItem.checkForUniqueItem( & m_rDrawModel );
+                XFillBitmapItem* pItemToPut = aItem.checkForUniqueItem( & m_rDrawModel );
 
-                rOutItemSet.Put( * pItemToPut );
+                rOutItemSet.Put( *pItemToPut );
             }
         break;
 


More information about the Libreoffice-commits mailing list