diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2014-08-01 00:46:00 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2014-08-03 20:58:46 +0000 |
commit | 88ba62b0e0b6cfdefeff2752713103c6e154302c (patch) | |
tree | c040b74d392aea21aa20fbbe5a4a0c8226339081 /chart2/source/controller/itemsetwrapper | |
parent | 10acf77f1af4c5c233c64ef54e3ef8657d1d9c6a (diff) |
cosmetic clean-up
Change-Id: I7b34e021c9f193643c89f20dc1ba42aad8e065d6
Reviewed-on: https://gerrit.libreoffice.org/10715
Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'chart2/source/controller/itemsetwrapper')
-rw-r--r-- | chart2/source/controller/itemsetwrapper/GraphicPropertyItemConverter.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/chart2/source/controller/itemsetwrapper/GraphicPropertyItemConverter.cxx b/chart2/source/controller/itemsetwrapper/GraphicPropertyItemConverter.cxx index aeafa4e2797f..b0d6da8cc843 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; |