Kaydet (Commit) bc3f0bd3 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

WaE: unused functions

üst 5a560e43
...@@ -160,14 +160,6 @@ sal_Unicode lclGetBuiltinIdFromBaseName( const OUString& rModelName ) ...@@ -160,14 +160,6 @@ sal_Unicode lclGetBuiltinIdFromBaseName( const OUString& rModelName )
return BIFF_DEFNAME_UNKNOWN; return BIFF_DEFNAME_UNKNOWN;
} }
bool lclIsFilterDatabaseName( const OUString& rModelName )
{
for( const sal_Char* const* ppcName = sppcFilterDbNames; ppcName < STATIC_ARRAY_END( sppcFilterDbNames ); ++ppcName )
if( rModelName.equalsIgnoreAsciiCaseAscii( *ppcName ) )
return true;
return false;
}
OUString lclGetUpcaseModelName( const OUString& rModelName ) OUString lclGetUpcaseModelName( const OUString& rModelName )
{ {
// TODO: i18n? // TODO: i18n?
......
...@@ -171,12 +171,6 @@ const sal_uInt16 BIFF_OBJCMO_AUTOFILL = 0x4000; /// Automatic fill forma ...@@ -171,12 +171,6 @@ const sal_uInt16 BIFF_OBJCMO_AUTOFILL = 0x4000; /// Automatic fill forma
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
inline BiffInputStream& operator>>( BiffInputStream& rStrm, ShapeAnchor& rAnchor )
{
rAnchor.importBiffAnchor( rStrm );
return rStrm;
}
} // namespace } // namespace
// ============================================================================ // ============================================================================
......
...@@ -210,15 +210,6 @@ const sal_Int16 BIFF_PTPAGEFIELDS_ALLITEMS = 0x7FFD; ...@@ -210,15 +210,6 @@ const sal_Int16 BIFF_PTPAGEFIELDS_ALLITEMS = 0x7FFD;
const sal_Int16 BIFF_PTDATAFIELD_PREVIOUS = 0x7FFB; const sal_Int16 BIFF_PTDATAFIELD_PREVIOUS = 0x7FFB;
const sal_Int16 BIFF_PTDATAFIELD_NEXT = 0x7FFC; const sal_Int16 BIFF_PTDATAFIELD_NEXT = 0x7FFC;
// ----------------------------------------------------------------------------
OUString lclReadPivotString( const WorkbookHelper& rHelper, BiffInputStream& rStrm, sal_uInt16 nLen )
{
if( nLen == BIFF_PT_NOSTRING )
return OUString();
return (rHelper.getBiff() == BIFF8) ? rStrm.readUniStringBody( nLen ) : rStrm.readCharArrayUC( nLen, rHelper.getTextEncoding() );
}
} // namespace } // namespace
// ============================================================================ // ============================================================================
......
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