diff options
author | David Tardon <dtardon@redhat.com> | 2016-03-15 06:54:13 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2016-03-15 08:53:42 +0100 |
commit | 2adf4ae59a0d92e289bbd63c8ed3490a58c4cbbf (patch) | |
tree | e13fa137869756986bb602af1d32a08279d94a14 /sc | |
parent | 18d357807496603a53300bfcdfaf4f5a3f1a6f0c (diff) |
update return type
Change-Id: I34b53e660263a1ff89de9c468f197ecc5e7fe9dd
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/collab/sendfunc.cxx | 4 | ||||
-rw-r--r-- | sc/source/ui/collab/sendfunc.hxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/collab/sendfunc.cxx b/sc/source/ui/collab/sendfunc.cxx index 1c8a3871afb9..fca719e593d0 100644 --- a/sc/source/ui/collab/sendfunc.cxx +++ b/sc/source/ui/collab/sendfunc.cxx @@ -387,10 +387,10 @@ bool ScDocFuncSend::SetFormulaCell( const ScAddress& rPos, ScFormulaCell* pCell, return true; // needs some code auditing action } -bool ScDocFuncSend::PutData( const ScAddress& rPos, ScEditEngineDefaulter& rEngine, bool bApi ) +void ScDocFuncSend::PutData( const ScAddress& rPos, ScEditEngineDefaulter& rEngine, bool bApi ) { SAL_INFO( "sc.tubes", "PutData not implemented!" ); - return ScDocFunc::PutData( rPos, rEngine, bApi ); + ScDocFunc::PutData( rPos, rEngine, bApi ); } bool ScDocFuncSend::SetCellText( diff --git a/sc/source/ui/collab/sendfunc.hxx b/sc/source/ui/collab/sendfunc.hxx index d5b605d43a71..3601e687d9fa 100644 --- a/sc/source/ui/collab/sendfunc.hxx +++ b/sc/source/ui/collab/sendfunc.hxx @@ -39,7 +39,7 @@ public: virtual bool SetStringCell( const ScAddress& rPos, const OUString& rStr, bool bInteraction ); virtual bool SetEditCell( const ScAddress& rPos, const EditTextObject& rStr, bool bInteraction ); virtual bool SetFormulaCell( const ScAddress& rPos, ScFormulaCell* pCell, bool bInteraction ); - virtual bool PutData( const ScAddress& rPos, ScEditEngineDefaulter& rEngine, bool bApi ); + virtual void PutData( const ScAddress& rPos, ScEditEngineDefaulter& rEngine, bool bApi ); virtual bool SetCellText( const ScAddress& rPos, const OUString& rText, bool bInterpret, bool bEnglish, bool bApi, const formula::FormulaGrammar::Grammar eGrammar ); |