Kaydet (Commit) 14f15321 authored tarafından Oliver Bolte's avatar Oliver Bolte

INTEGRATION: CWS sb59 (1.6.24); FILE MERGED

2006/08/09 12:53:52 sb 1.6.24.1: #i67487# Made code warning-free (wntmsci10).
üst 972761f6
......@@ -4,9 +4,9 @@
*
* $RCSfile: formcellbinding.cxx,v $
*
* $Revision: 1.7 $
* $Revision: 1.8 $
*
* last change: $Author: obo $ $Date: 2006-09-17 10:34:57 $
* last change: $Author: obo $ $Date: 2006-10-12 14:43:45 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
......@@ -111,7 +111,6 @@ namespace xmloff
using ::com::sun::star::uno::Reference;
using ::com::sun::star::uno::XInterface;
using ::com::sun::star::container::XChild;
using ::com::sun::star::drawing::XDrawPage;
using ::com::sun::star::frame::XModel;
using ::com::sun::star::uno::UNO_QUERY;
......@@ -138,12 +137,6 @@ namespace xmloff
return getTypedModelNode< XModel >( _rxModelNode );
}
//....................................................................
Reference< XDrawPage > getDrawPage( const Reference< XInterface >& _rxModelNode )
{
return getTypedModelNode< XDrawPage >( _rxModelNode );
}
//....................................................................
struct StringCompare : public ::std::unary_function< ::rtl::OUString, bool >
{
......@@ -158,21 +151,6 @@ namespace xmloff
return ( _rCompare == m_sReference ) ? true : false;
}
};
//....................................................................
bool isAsciiLetter( sal_Unicode _c )
{
return ( _c >= 'A' && _c <= 'Z' )
|| ( _c >= 'a' && _c <= 'z' );
}
//....................................................................
sal_Unicode toUpperAscii( sal_Unicode _c )
{
sal_Unicode nUpper( _c );
if ( _c >= 'a' && _c <= 'z' )
nUpper += 'A' - 'a';
return nUpper;
}
}
//========================================================================
......
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