Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormayerwin <traderwin@gmail.com>2013-09-17 21:14:04 +0400
committermayerwin <traderwin@gmail.com>2013-09-17 21:14:04 +0400
commit5a25913631f17071d121875289875c554448db26 (patch)
treeb4a173b7915c9f17f90f2d9eb0ec0b9353545e8e /mcs/class/WindowsBase
parent6176e0b1798fae7186243ed87146e4dc0163b6e9 (diff)
Fix: bug https://bugzilla.xamarin.com/show_bug.cgi?id=14811 (to be reviewed)
Diffstat (limited to 'mcs/class/WindowsBase')
-rw-r--r--mcs/class/WindowsBase/System.IO.Packaging/PackagePart.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mcs/class/WindowsBase/System.IO.Packaging/PackagePart.cs b/mcs/class/WindowsBase/System.IO.Packaging/PackagePart.cs
index 9160f30bbe6..eaf8bc2370d 100644
--- a/mcs/class/WindowsBase/System.IO.Packaging/PackagePart.cs
+++ b/mcs/class/WindowsBase/System.IO.Packaging/PackagePart.cs
@@ -237,7 +237,7 @@ namespace System.IO.Packaging {
{
while (true)
{
- string s = relationshipId.ToString ();
+ string s = "Re" + RelationshipId.ToString ();
if (!RelationshipExists (s))
return s;
relationshipId ++;
@@ -262,4 +262,4 @@ namespace System.IO.Packaging {
Package.WriteRelationships (Relationships, s);
}
}
-} \ No newline at end of file
+}