summaryrefslogtreecommitdiff
path: root/rsc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-03-14 08:48:55 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-03-14 08:55:34 +0000
commitf9903a57dcb478c3b0e3c184ab6a020affff94d6 (patch)
treea6081457bdd382878d6d163f69c0d428e9579583 /rsc
parentfc27a685d466dc380a8b68cd48f47db632ed3693 (diff)
callcatcher: update unused code
Change-Id: If4615e5bcb012321c554f75cd936dbf9b0dbf8ab
Diffstat (limited to 'rsc')
-rw-r--r--rsc/inc/rscdb.hxx1
-rw-r--r--rsc/source/parser/rscicpx.cxx13
2 files changed, 0 insertions, 14 deletions
diff --git a/rsc/inc/rscdb.hxx b/rsc/inc/rscdb.hxx
index e36e296a29fc..7708d981d951 100644
--- a/rsc/inc/rscdb.hxx
+++ b/rsc/inc/rscdb.hxx
@@ -209,7 +209,6 @@ class RscTypCont
RscTop * InitClassNumericFormatter( RscTop * pSuper );
RscTop * InitClassMetricFormatter( RscTop * pSuper,
RscEnum * pFieldUnits );
- RscTop * InitClassCurrencyFormatter( RscTop * pSuper );
RscTop * InitClassDateFormatter( RscTop * pSuper, RscTop * pClassDate );
RscTop * InitClassTimeFormatter( RscTop * pSuper, RscTop * pClassTime,
RscEnum * pTimeFieldFormat );
diff --git a/rsc/source/parser/rscicpx.cxx b/rsc/source/parser/rscicpx.cxx
index 432cc80e813c..45139c3d798f 100644
--- a/rsc/source/parser/rscicpx.cxx
+++ b/rsc/source/parser/rscicpx.cxx
@@ -1292,19 +1292,6 @@ RscTop * RscTypCont::InitClassMetricFormatter( RscTop * pSuper,
return pClassMetric;
}
-RscTop * RscTypCont::InitClassCurrencyFormatter(RscTop * pSuper)
-{
- Atom nId;
- RscTop * pClassCurrency;
-
- // Klasse anlegen
- nId = pHS->getID( "CurrencyFormatter" );
- pClassCurrency = new RscClass( nId, RSC_NOTYPE, pSuper );
- pClassCurrency->SetCallPar( *pStdPar1, *pStdPar2, *pStdParType );
-
- return pClassCurrency;
-}
-
RscTop * RscTypCont::InitClassDateFormatter( RscTop * pSuper,
RscTop * pClassDate )
{