|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r78305 - trunk/libs/locale/src/icu
From: artyomtnk_at_[hidden]
Date: 2012-05-02 09:32:07
Author: artyom
Date: 2012-05-02 09:32:07 EDT (Wed, 02 May 2012)
New Revision: 78305
URL: http://svn.boost.org/trac/boost/changeset/78305
Log:
Closing #6833, applied patch
Text files modified:
trunk/libs/locale/src/icu/predefined_formatters.hpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/libs/locale/src/icu/predefined_formatters.hpp
==============================================================================
--- trunk/libs/locale/src/icu/predefined_formatters.hpp (original)
+++ trunk/libs/locale/src/icu/predefined_formatters.hpp 2012-05-02 09:32:07 EDT (Wed, 02 May 2012)
@@ -124,10 +124,10 @@
ap.reset(icu::NumberFormat::createPercentInstance(locale_,err));
break;
case fmt_spell:
- ap.reset(new icu::RuleBasedNumberFormat(URBNF_SPELLOUT,locale_,err));
+ ap.reset(new icu::RuleBasedNumberFormat(icu::URBNF_SPELLOUT,locale_,err));
break;
case fmt_ord:
- ap.reset(new icu::RuleBasedNumberFormat(URBNF_ORDINAL,locale_,err));
+ ap.reset(new icu::RuleBasedNumberFormat(icu::URBNF_ORDINAL,locale_,err));
break;
default:
throw std::runtime_error("locale::internal error should not get there");
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk