summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Sachau <tommy@gentoo.org>2009-03-19 18:46:15 +0000
committerThomas Sachau <tommy@gentoo.org>2009-03-19 18:46:15 +0000
commit94faa769dad2df13c42aae47bcb4b12b5f6589b9 (patch)
treea2dad23571a2cc66a2f4b656da56232be3a58b5f /net-p2p/fms/files
parentAdd patch to Generate javadoc for org.freedesktop.bindings.Internationalization. (diff)
downloadgentoo-2-94faa769dad2df13c42aae47bcb4b12b5f6589b9.tar.gz
gentoo-2-94faa769dad2df13c42aae47bcb4b12b5f6589b9.tar.bz2
gentoo-2-94faa769dad2df13c42aae47bcb4b12b5f6589b9.zip
Version bump, remove old
(Portage version: 2.2_rc26/cvs/Linux x86_64)
Diffstat (limited to 'net-p2p/fms/files')
-rw-r--r--net-p2p/fms/files/utf8.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/net-p2p/fms/files/utf8.patch b/net-p2p/fms/files/utf8.patch
new file mode 100644
index 000000000000..1a6c6b8659bd
--- /dev/null
+++ b/net-p2p/fms/files/utf8.patch
@@ -0,0 +1,20 @@
+--- src/unicode/utfconversion.cpp 2009-03-01 12:11:56.000000000 +0100
++++ src/unicode/utfconversion.cpp.new 2009-03-18 22:56:09.000000000 +0100
+@@ -52,7 +52,7 @@
+ }
+ else
+ {
+- std::vector<uint32_t> dest2(utf8string.size(),0);
++ std::vector<UTF32> dest2(utf8string.size(),0);
+ UTF32 *deststart=reinterpret_cast<UTF32 *>(&dest2[0]);
+ UTF32 *destend=deststart+dest2.size();
+
+@@ -137,7 +137,7 @@
+ }
+ else
+ {
+- std::vector<uint32_t> source2(wcstring.begin(),wcstring.end());
++ std::vector<UTF32> source2(wcstring.begin(),wcstring.end());
+ std::vector<std::string::value_type> dest(wcstring.size()*sizeof(std::wstring::value_type),0);
+
+ const UTF32 *sourcestart=reinterpret_cast<const UTF32 *>(&source2[0]);