diff options
Diffstat (limited to 'sccomp')
-rw-r--r-- | sccomp/source/solver/solver.cxx | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/sccomp/source/solver/solver.cxx b/sccomp/source/solver/solver.cxx index 5fc46ec89e3b..9506ebb7926a 100644 --- a/sccomp/source/solver/solver.cxx +++ b/sccomp/source/solver/solver.cxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: solver.cxx,v $ - * $Revision: 1.2 $ + * $Revision: 1.3 $ * * This file is part of OpenOffice.org. * @@ -133,19 +133,6 @@ uno::Reference<table::XCell> lcl_GetCell( const uno::Reference<sheet::XSpreadshe return xSheet->getCellByPosition( rPos.Column, rPos.Row ); } -OUString lcl_GetString( const uno::Reference<sheet::XSpreadsheetDocument>& xDoc, const table::CellAddress& rPos ) -{ - uno::Reference<text::XTextRange> xText( lcl_GetCell( xDoc, rPos ), uno::UNO_QUERY ); - return xText->getString(); -} - -void lcl_SetString( const uno::Reference<sheet::XSpreadsheetDocument>& xDoc, - const table::CellAddress& rPos, const OUString& rString ) -{ - uno::Reference<text::XTextRange> xText( lcl_GetCell( xDoc, rPos ), uno::UNO_QUERY ); - xText->setString( rString ); -} - void lcl_SetValue( const uno::Reference<sheet::XSpreadsheetDocument>& xDoc, const table::CellAddress& rPos, double fValue ) { |