summaryrefslogtreecommitdiff
path: root/include/oox/ppt
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-04-13 11:25:07 +0200
committerNoel Grandin <noel@peralex.com>2016-04-13 13:27:52 +0200
commitd60d957a680d9c98823aac05facb652bf619a750 (patch)
treeff5fc8caeee09497eb7943c0ef95337c3bb4e8de /include/oox/ppt
parent299d938bf05faf60b848a9d4862e58bb42db3e65 (diff)
loplugin:passstuffbyref in oox
Change-Id: Iec989e9060c77dd5b010224b37633179cee4f7e9
Diffstat (limited to 'include/oox/ppt')
-rw-r--r--include/oox/ppt/comments.hxx4
-rw-r--r--include/oox/ppt/pptimport.hxx4
-rw-r--r--include/oox/ppt/slidepersist.hxx28
3 files changed, 18 insertions, 18 deletions
diff --git a/include/oox/ppt/comments.hxx b/include/oox/ppt/comments.hxx
index 6766df27870c..a722ff3ae0a1 100644
--- a/include/oox/ppt/comments.hxx
+++ b/include/oox/ppt/comments.hxx
@@ -77,11 +77,11 @@ class Comment
{
text = _text;
}
- OUString get_text()
+ const OUString& get_text()
{
return text;
}
- css::util::DateTime getDateTime()
+ const css::util::DateTime& getDateTime()
{
return aDateTime;
}
diff --git a/include/oox/ppt/pptimport.hxx b/include/oox/ppt/pptimport.hxx
index 125030381f70..35bfb91a4d36 100644
--- a/include/oox/ppt/pptimport.hxx
+++ b/include/oox/ppt/pptimport.hxx
@@ -49,9 +49,9 @@ public:
virtual const oox::drawingml::table::TableStyleListPtr getTableStyles() override;
virtual ::oox::drawingml::chart::ChartConverter* getChartConverter() override;
- SlidePersistPtr getActualSlidePersist() const { return mpActualSlidePersist; };
+ const SlidePersistPtr& getActualSlidePersist() const { return mpActualSlidePersist; };
void setActualSlidePersist( SlidePersistPtr pActualSlidePersist ){ mpActualSlidePersist = pActualSlidePersist; };
- std::map< OUString, oox::drawingml::ThemePtr >& getThemes(){ return maThemes; };
+ std::map< OUString, oox::drawingml::ThemePtr >& getThemes(){ return maThemes; };
std::vector< SlidePersistPtr >& getDrawPages(){ return maDrawPages; };
std::vector< SlidePersistPtr >& getMasterPages(){ return maMasterPages; };
std::vector< SlidePersistPtr >& getNotesPages(){ return maNotesPages; };
diff --git a/include/oox/ppt/slidepersist.hxx b/include/oox/ppt/slidepersist.hxx
index 1a61603ae26f..6fd77941d947 100644
--- a/include/oox/ppt/slidepersist.hxx
+++ b/include/oox/ppt/slidepersist.hxx
@@ -59,31 +59,31 @@ public:
oox::drawingml::ShapePtr pShapesPtr, const ::oox::drawingml::TextListStylePtr & );
~SlidePersist();
- css::uno::Reference< css::drawing::XDrawPage > getPage() const { return mxPage; };
+ const css::uno::Reference< css::drawing::XDrawPage >& getPage() const { return mxPage; };
#if OSL_DEBUG_LEVEL > 0
static css::uno::WeakReference< css::drawing::XDrawPage > mxDebugPage;
#endif
void setMasterPersist( SlidePersistPtr pMasterPersistPtr ){ mpMasterPagePtr = pMasterPersistPtr; }
- SlidePersistPtr getMasterPersist() const { return mpMasterPagePtr; }
+ const SlidePersistPtr& getMasterPersist() const { return mpMasterPagePtr; }
void setPath( const OUString& rPath ) { maPath = rPath; }
- const OUString getPath() const { return maPath; }
+ const OUString& getPath() const { return maPath; }
void setLayoutPath( const OUString& rLayoutPath ) { maLayoutPath = rLayoutPath; }
- const OUString getLayoutPath() const { return maLayoutPath; }
+ const OUString& getLayoutPath() const { return maLayoutPath; }
void setTheme( const oox::drawingml::ThemePtr& rThemePtr ){ mpThemePtr = rThemePtr; }
- oox::drawingml::ThemePtr getTheme() const { return mpThemePtr; }
+ const oox::drawingml::ThemePtr& getTheme() const { return mpThemePtr; }
- oox::drawingml::ClrSchemePtr getClrScheme() const { return mpClrSchemePtr; }
+ const oox::drawingml::ClrSchemePtr& getClrScheme() const { return mpClrSchemePtr; }
void setClrMap( const oox::drawingml::ClrMapPtr pClrMapPtr ){ mpClrMapPtr = pClrMapPtr; }
- oox::drawingml::ClrMapPtr getClrMap() const { return mpClrMapPtr; }
+ const oox::drawingml::ClrMapPtr& getClrMap() const { return mpClrMapPtr; }
void setBackgroundProperties( const oox::drawingml::FillPropertiesPtr& rFillPropertiesPtr ){ mpBackgroundPropertiesPtr = rFillPropertiesPtr; }
- const oox::drawingml::FillPropertiesPtr getBackgroundProperties() const { return mpBackgroundPropertiesPtr; }
+ const oox::drawingml::FillPropertiesPtr& getBackgroundProperties() const { return mpBackgroundPropertiesPtr; }
bool isMasterPage() const { return mbMaster; }
bool isNotesPage() const { return mbNotes; }
@@ -92,13 +92,13 @@ public:
short getLayoutFromValueToken();
- oox::drawingml::TextListStylePtr getDefaultTextStyle() const { return maDefaultTextStylePtr; }
- oox::drawingml::TextListStylePtr getTitleTextStyle() const { return maTitleTextStylePtr; }
- oox::drawingml::TextListStylePtr getBodyTextStyle() const { return maBodyTextStylePtr; }
- oox::drawingml::TextListStylePtr getNotesTextStyle() const { return maNotesTextStylePtr; }
- oox::drawingml::TextListStylePtr getOtherTextStyle() const { return maOtherTextStylePtr; }
+ const oox::drawingml::TextListStylePtr& getDefaultTextStyle() const { return maDefaultTextStylePtr; }
+ const oox::drawingml::TextListStylePtr& getTitleTextStyle() const { return maTitleTextStylePtr; }
+ const oox::drawingml::TextListStylePtr& getBodyTextStyle() const { return maBodyTextStylePtr; }
+ const oox::drawingml::TextListStylePtr& getNotesTextStyle() const { return maNotesTextStylePtr; }
+ const oox::drawingml::TextListStylePtr& getOtherTextStyle() const { return maOtherTextStylePtr; }
- oox::drawingml::ShapePtr getShapes() { return maShapesPtr; }
+ const oox::drawingml::ShapePtr& getShapes() { return maShapesPtr; }
void hideShapesAsMasterShapes();
::std::list< std::shared_ptr< TimeNode > >& getTimeNodeList() { return maTimeNodeList; }
oox::ppt::HeaderFooter& getHeaderFooter(){ return maHeaderFooter; };