[Libreoffice-commits] .: sc/source

Tor Lillqvist tml at kemper.freedesktop.org
Tue Apr 17 00:08:00 PDT 2012


 sc/source/filter/oox/addressconverter.cxx |   11 -----------
 sc/source/filter/oox/drawingbase.cxx      |   11 -----------
 2 files changed, 22 deletions(-)

New commits:
commit 7c3c0c557e8b293551fb6b1b7a1f39b45a394777
Author: Tor Lillqvist <tml at iki.fi>
Date:   Tue Apr 17 10:04:17 2012 +0300

    WaE: unused functions

diff --git a/sc/source/filter/oox/addressconverter.cxx b/sc/source/filter/oox/addressconverter.cxx
index 90c916c..ef7c0fa 100644
--- a/sc/source/filter/oox/addressconverter.cxx
+++ b/sc/source/filter/oox/addressconverter.cxx
@@ -97,17 +97,6 @@ const sal_Unicode BIFF_URL_UNC      = '@';          /// UNC path root.
 const sal_Unicode BIFF_DCON_ENCODED = '\x01';       /// First character of an encoded path from DCON* records.
 const sal_Unicode BIFF_DCON_INTERN  = '\x02';       /// First character of an encoded sheet name from DCON* records.
 
-
-inline sal_uInt8 lclGetBiffAddressSize( bool bCol16Bit, bool bRow32Bit )
-{
-    return (bCol16Bit ? 2 : 1) + (bRow32Bit ? 4 : 2);
-}
-
-inline sal_uInt8 lclGetBiffRangeSize( bool bCol16Bit, bool bRow32Bit )
-{
-    return 2 * lclGetBiffAddressSize( bCol16Bit, bRow32Bit );
-}
-
 } // namespace
 
 // ============================================================================
diff --git a/sc/source/filter/oox/drawingbase.cxx b/sc/source/filter/oox/drawingbase.cxx
index 330cada..3e3cb64 100644
--- a/sc/source/filter/oox/drawingbase.cxx
+++ b/sc/source/filter/oox/drawingbase.cxx
@@ -61,17 +61,6 @@ inline sal_Int32 lclEmuToHmm( sal_Int64 nValue )
     return (nValue < 0) ? -1 : convertEmuToHmm( nValue );
 }
 
-/** Reads the cell anchor model from a BIFF or DFF stream. */
-BinaryInputStream& operator>>( BinaryInputStream& rStrm, CellAnchorModel& rModel )
-{
-    // all members are given as 16-bit unsigned values
-    rModel.mnCol = rStrm.readuInt16();
-    rModel.mnColOffset = rStrm.readuInt16();
-    rModel.mnRow = rStrm.readuInt16();
-    rModel.mnRowOffset = rStrm.readuInt16();
-    return rStrm;
-}
-
 } // namespace
 
 // ============================================================================


More information about the Libreoffice-commits mailing list