summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
authorDaniel Di Marco <d.dimarco@gmx.de>2011-11-22 16:58:46 +0100
committerEike Rathke <erack@redhat.com>2011-11-22 16:59:16 +0100
commit33a8ac0750d4ee7800b9faccdee3fffb850a04b1 (patch)
tree0c31215a7448146b733b96354bb6b55de4cf2eb7 /cui
parent98f32b2b8ebefe50dfa99b5c72ceb2639bf63787 (diff)
remove NfShCurrencyEntries and NfShCurrencyEntryPtr types
Diffstat (limited to 'cui')
-rw-r--r--cui/source/tabpages/numfmt.cxx5
1 files changed, 1 insertions, 4 deletions
diff --git a/cui/source/tabpages/numfmt.cxx b/cui/source/tabpages/numfmt.cxx
index 8c9ec83c2498..5866cfc9e852 100644
--- a/cui/source/tabpages/numfmt.cxx
+++ b/cui/source/tabpages/numfmt.cxx
@@ -1739,16 +1739,13 @@ void SvxNumberFormatTabPage::SetOkHdl( const Link& rOkHandler )
void SvxNumberFormatTabPage::FillCurrencyBox()
{
SvStringsDtor aList;
- NfShCurrencyEntries rEntries;
- XubString* pEntry = NULL;
sal_uInt16 nSelPos=0;
pNumFmtShell->GetCurrencySymbols( aList, &nSelPos);
for(sal_uInt16 i=1;i<aList.Count();i++)
{
- pEntry=aList[i];
- aLbCurrency.InsertEntry( *pEntry);
+ aLbCurrency.InsertEntry( *aList[i] );
}
aLbCurrency.SelectEntryPos(nSelPos);
}