summaryrefslogtreecommitdiff
path: root/vcl/source/control/longcurr.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/control/longcurr.cxx')
-rw-r--r--vcl/source/control/longcurr.cxx35
1 files changed, 0 insertions, 35 deletions
diff --git a/vcl/source/control/longcurr.cxx b/vcl/source/control/longcurr.cxx
index 6407f480f913..8f4eb0166298 100644
--- a/vcl/source/control/longcurr.cxx
+++ b/vcl/source/control/longcurr.cxx
@@ -344,41 +344,6 @@ LongCurrencyFormatter::LongCurrencyFormatter()
// -----------------------------------------------------------------------
-void LongCurrencyFormatter::ImplLoadRes( const ResId& rResId )
-{
- ImpInit();
-
- ResMgr* pMgr = rResId.GetResMgr();
- if( pMgr )
- {
- sal_uLong nMask = pMgr->ReadLong();
-
- if ( NUMERICFORMATTER_MIN & nMask )
- mnMin = pMgr->ReadLong();
-
- if ( NUMERICFORMATTER_MAX & nMask )
- mnMax = pMgr->ReadLong();
-
- if ( NUMERICFORMATTER_STRICTFORMAT & nMask )
- SetStrictFormat( (sal_Bool)pMgr->ReadShort() );
-
- if ( NUMERICFORMATTER_DECIMALDIGITS & nMask )
- SetDecimalDigits( pMgr->ReadShort() );
-
- if ( NUMERICFORMATTER_VALUE & nMask )
- {
- mnFieldValue = pMgr->ReadLong();
- if ( mnFieldValue > mnMax )
- mnFieldValue = mnMax;
- else if ( mnFieldValue < mnMin )
- mnFieldValue = mnMin;
- mnLastValue = mnFieldValue;
- }
- }
-}
-
-// -----------------------------------------------------------------------
-
LongCurrencyFormatter::~LongCurrencyFormatter()
{
}