Kaydet (Commit) 11f50dfa authored tarafından Michael Meeks's avatar Michael Meeks Kaydeden (comit) Michael Meeks

tubes: build fixes.

Change-Id: I7419df44a1f75a1f8bd93f10a8104b75784e6fee
üst d9e21015
...@@ -31,7 +31,7 @@ OUString editToString( const EditTextObject& /*rEditText*/ ) ...@@ -31,7 +31,7 @@ OUString editToString( const EditTextObject& /*rEditText*/ )
return OUString(); return OUString();
} }
EditTextObject stringToEdit( const OUString& rStr ) EditTextObject stringToEdit( const OUString& /* rStr */ )
{ {
// FIXME: implement me. // FIXME: implement me.
// The code here only serves to make this file compilable. // The code here only serves to make this file compilable.
...@@ -196,9 +196,7 @@ public: ...@@ -196,9 +196,7 @@ public:
void appendAddress( const ScAddress &rPos ) void appendAddress( const ScAddress &rPos )
{ {
OUString aStr; aMessage.append( rPos.Format( SCA_VALID ) );
rPos.Format( aStr, SCA_VALID );
aMessage.append( aStr );
appendSeparator(); appendSeparator();
} }
...@@ -379,7 +377,7 @@ bool ScDocFuncSend::SetFormulaCell( const ScAddress& rPos, ScFormulaCell* pCell, ...@@ -379,7 +377,7 @@ bool ScDocFuncSend::SetFormulaCell( const ScAddress& rPos, ScFormulaCell* pCell,
aOp.appendFormulaCell( pCell ); aOp.appendFormulaCell( pCell );
aOp.appendBool( bInteraction ); aOp.appendBool( bInteraction );
SendMessage( aOp ); SendMessage( aOp );
pCell->Delete(); delete pCell;
return true; // needs some code auditing action return true; // needs some code auditing action
} }
......
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