Kaydet (Commit) 46c7ecf7 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:passstuffbyref

Change-Id: I637e1c9d5af1f9d8ad5141c8d07ea72232656070
üst 9cea9137
...@@ -283,7 +283,7 @@ rtl::Reference< FastPropertySetInfo > TableColumn::getStaticPropertySetInfo() ...@@ -283,7 +283,7 @@ rtl::Reference< FastPropertySetInfo > TableColumn::getStaticPropertySetInfo()
return xInfo; return xInfo;
} }
TableModelRef TableColumn::getModel() const TableModelRef const & TableColumn::getModel() const
{ {
return mxTableModel; return mxTableModel;
} }
......
...@@ -59,7 +59,7 @@ public: ...@@ -59,7 +59,7 @@ public:
virtual css::uno::Any SAL_CALL getFastPropertyValue( ::sal_Int32 nHandle ) throw (css::beans::UnknownPropertyException, css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception) override; virtual css::uno::Any SAL_CALL getFastPropertyValue( ::sal_Int32 nHandle ) throw (css::beans::UnknownPropertyException, css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception) override;
/// Get the table that owns this column. /// Get the table that owns this column.
TableModelRef getModel() const; TableModelRef const & getModel() const;
/// Get the width of this column. /// Get the width of this column.
sal_Int32 getWidth() const; sal_Int32 getWidth() const;
......
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