diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2008-07-01 15:16:53 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2008-07-01 15:16:53 +0000 |
commit | 6d6d1986419ffe72c132b22c36f83d0a67483e88 (patch) | |
tree | a4a8ac5100e26dd8f3b4cee0363496e25d6508c4 /sccomp/source | |
parent | 5f6031f559b1afda3111dfa59df50f57750a5466 (diff) |
INTEGRATION: CWS dr62 (1.2.6); FILE MERGED
2008/05/30 13:18:49 nn 1.2.6.1: #i90004# remove unused functions
Diffstat (limited to 'sccomp/source')
-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 ) { |