summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-08-02 09:10:34 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-08-02 11:06:46 +0100
commitb9459499d951d4530d6a271e0f0bc42b22c03130 (patch)
tree2090f11681791b74433f57f66d010a32f5731165
parent16cb77cc2c52875757f6b67abbe688f139bc0258 (diff)
callcatcher: remove unused methods
-rw-r--r--binfilter/bf_svtools/source/numbers/svt_zformat.cxx19
-rw-r--r--binfilter/inc/bf_svtools/zformat.hxx6
2 files changed, 0 insertions, 25 deletions
diff --git a/binfilter/bf_svtools/source/numbers/svt_zformat.cxx b/binfilter/bf_svtools/source/numbers/svt_zformat.cxx
index fcba7cb2d..fe73f1ae2 100644
--- a/binfilter/bf_svtools/source/numbers/svt_zformat.cxx
+++ b/binfilter/bf_svtools/source/numbers/svt_zformat.cxx
@@ -1478,18 +1478,6 @@ void SvNumberformat::LoadString( SvStream& rStream, String& rStr )
}
}
-
-BOOL SvNumberformat::HasNewCurrency() const
-{
- for ( USHORT j=0; j<4; j++ )
- {
- if ( NumFor[j].HasNewCurrency() )
- return TRUE;
- }
- return FALSE;
-}
-
-
BOOL SvNumberformat::GetNewCurrencySymbol( String& rSymbol,
String& rExtension ) const
{
@@ -1553,13 +1541,6 @@ String SvNumberformat::StripNewCurrencyDelimiters( const String& rStr,
return aTmp;
}
-
-void SvNumberformat::Build50Formatstring( String& rStr ) const
-{
- rStr = StripNewCurrencyDelimiters( sFormatstring, TRUE );
-}
-
-
void SvNumberformat::ImpGetOutputStandard(double& fNumber, String& OutString)
{
USHORT nStandardPrec = rScan.GetStandardPrec();
diff --git a/binfilter/inc/bf_svtools/zformat.hxx b/binfilter/inc/bf_svtools/zformat.hxx
index 89974662a..f10511882 100644
--- a/binfilter/inc/bf_svtools/zformat.hxx
+++ b/binfilter/inc/bf_svtools/zformat.hxx
@@ -312,12 +312,6 @@ public:
// Whether the negative format is without a sign or not
BOOL IsNegativeWithoutSign() const;
- // Whether a new SYMBOLTYPE_CURRENCY is contained in the format
- BOOL HasNewCurrency() const;
-
- // Build string from NewCurrency for saving it SO50 compatible
- void Build50Formatstring( String& rStr ) const;
-
// strip [$-yyy] from all [$xxx-yyy] leaving only xxx's,
// if bQuoteSymbol==TRUE the xxx will become "xxx"
static String StripNewCurrencyDelimiters( const String& rStr,