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

github.com/mono/xwt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLluis Sanchez <lluis@xamarin.com>2013-08-24 17:54:45 +0400
committerLluis Sanchez <lluis@xamarin.com>2013-08-24 17:55:01 +0400
commit88983c2dc36a95f28988140920d0d05beb9ee657 (patch)
tree2eacb877fd8d5e6086bdbc3574f517f43079f84e /Xwt.Mac
parentcd76e6ff4331d92e37e9a156e6e38ce5369ed056 (diff)
Use Uri as data type for markup links
Diffstat (limited to 'Xwt.Mac')
-rw-r--r--Xwt.Mac/Xwt.Mac/Util.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Xwt.Mac/Xwt.Mac/Util.cs b/Xwt.Mac/Xwt.Mac/Util.cs
index 58c3e5b1..4a8258e7 100644
--- a/Xwt.Mac/Xwt.Mac/Util.cs
+++ b/Xwt.Mac/Xwt.Mac/Util.cs
@@ -322,7 +322,7 @@ namespace Xwt.Mac
}
else if (att is LinkTextAttribute) {
var xa = (LinkTextAttribute)att;
- ns.AddAttribute (NSAttributedString.LinkAttributeName, (NSString)xa.Target, r);
+ ns.AddAttribute (NSAttributedString.LinkAttributeName, (NSString)xa.Target.ToString (), r);
}
else if (att is StrikethroughTextAttribute) {
var xa = (StrikethroughTextAttribute)att;