summaryrefslogtreecommitdiff
path: root/i18npool
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2008-01-28 14:35:07 +0000
committerVladimir Glazounov <vg@openoffice.org>2008-01-28 14:35:07 +0000
commitadae824c6bce77bd25e8291e430ce7f30fd4f111 (patch)
treeb8951a36113577c5dca54a0061ee8d44494501c5 /i18npool
parent77bb0777ad171594debed60bc1b69bcda3ef431c (diff)
INTEGRATION: CWS i18n39 (1.27.44); FILE MERGED
2008/01/08 04:22:17 khong 1.27.44.1: i78055 move simple collator tailoring to localedata
Diffstat (limited to 'i18npool')
-rw-r--r--i18npool/source/localedata/LocaleNode.cxx10
1 files changed, 8 insertions, 2 deletions
diff --git a/i18npool/source/localedata/LocaleNode.cxx b/i18npool/source/localedata/LocaleNode.cxx
index 0140ac8241d9..49a1fdfc3c94 100644
--- a/i18npool/source/localedata/LocaleNode.cxx
+++ b/i18npool/source/localedata/LocaleNode.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: LocaleNode.cxx,v $
*
- * $Revision: 1.27 $
+ * $Revision: 1.28 $
*
- * last change: $Author: rt $ $Date: 2007-07-03 14:05:01 $
+ * last change: $Author: vg $ $Date: 2008-01-28 15:35:07 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -838,6 +838,8 @@ void LCCollationNode::generateCode (const OFileWriter &of) const
::rtl::OUString str;
str = currNode->getAttr() -> getValueByName("unoid");
of.writeParameter("CollatorID", str, j);
+ str = currNode->getValue();
+ of.writeParameter("CollatorRule", str, j);
str = currNode -> getAttr() -> getValueByName("default");
of.writeDefaultParameter("Collator", str, j);
of.writeAsciiString("\n");
@@ -871,6 +873,10 @@ void LCCollationNode::generateCode (const OFileWriter &of) const
of.writeAsciiString("\tdefaultCollator");
of.writeInt(j);
of.writeAsciiString(",\n");
+
+ of.writeAsciiString("\tCollatorRule");
+ of.writeInt(j);
+ of.writeAsciiString(",\n");
}
of.writeAsciiString("};\n\n");