summaryrefslogtreecommitdiffstats
path: root/svl
diff options
context:
space:
mode:
authorMariusz Dykierek <mariuszdykierek@gmail.com>2012-01-23 13:58:13 +0530
committerMuthu Subramanian <sumuthu@suse.com>2012-01-23 13:58:13 +0530
commitac7a8bfe4e53d4615929bcafe9cbdd88d03b6e1d (patch)
tree2423af4ac11358293459d4778453f400e08145da /svl
parentRemoved Get*EntryLine? and Get*EntryDistance methods. (diff)
downloadcore-ac7a8bfe4e53d4615929bcafe9cbdd88d03b6e1d.tar.gz
core-ac7a8bfe4e53d4615929bcafe9cbdd88d03b6e1d.zip
Removed NfCurrencyEntry::ApplyVariableInformation().
Diffstat (limited to 'svl')
-rw-r--r--svl/inc/svl/zforlist.hxx4
-rw-r--r--svl/source/numbers/zforlist.cxx8
2 files changed, 0 insertions, 12 deletions
diff --git a/svl/inc/svl/zforlist.hxx b/svl/inc/svl/zforlist.hxx
index aa68fc100f79..ac387d472f35 100644
--- a/svl/inc/svl/zforlist.hxx
+++ b/svl/inc/svl/zforlist.hxx
@@ -260,10 +260,6 @@ public:
/// Symbols and language identical
bool operator==( const NfCurrencyEntry& r ) const;
- /** Apply format information (nPositiveFormat,
- nNegativeFormat, nDigits, cZeroChar) of another format. */
- void ApplyVariableInformation( const NfCurrencyEntry& );
-
const String& GetSymbol() const { return aSymbol; }
const String& GetBankSymbol() const { return aBankSymbol; }
LanguageType GetLanguage() const { return eLanguage; }
diff --git a/svl/source/numbers/zforlist.cxx b/svl/source/numbers/zforlist.cxx
index eecd7439cd03..1f5085da16a1 100644
--- a/svl/source/numbers/zforlist.cxx
+++ b/svl/source/numbers/zforlist.cxx
@@ -3852,14 +3852,6 @@ bool NfCurrencyEntry::operator==( const NfCurrencyEntry& r ) const
;
}
-void NfCurrencyEntry::ApplyVariableInformation( const NfCurrencyEntry& r )
-{
- nPositiveFormat = r.nPositiveFormat;
- nNegativeFormat = r.nNegativeFormat;
- cZeroChar = r.cZeroChar;
-}
-
-
void NfCurrencyEntry::BuildSymbolString( String& rStr, bool bBank,
bool bWithoutExtension ) const
{