Revision: 7510
          http://skim-app.svn.sourceforge.net/skim-app/?rev=7510&view=rev
Author:   hofman
Date:     2011-10-08 11:42:13 +0000 (Sat, 08 Oct 2011)
Log Message:
-----------
set whole attributed string of rich text from RTF, as the docs are wrong

Modified Paths:
--------------
    trunk/NSAttributedString_SKExtensions.m

Modified: trunk/NSAttributedString_SKExtensions.m
===================================================================
--- trunk/NSAttributedString_SKExtensions.m     2011-10-07 13:10:33 UTC (rev 
7509)
+++ trunk/NSAttributedString_SKExtensions.m     2011-10-08 11:42:13 UTC (rev 
7510)
@@ -93,8 +93,11 @@
 }
 
 - (void)setScriptingRTF:(id)data {
-    if (data)
-        [self readFromData:data options:[NSDictionary dictionary] 
documentAttributes:NULL error:NULL];
+    if (data) {
+        NSAttributedString *attrString = [[[NSAttributedString alloc] 
initWithData:data options:[NSDictionary dictionary] documentAttributes:NULL 
error:NULL] autorelease];
+        if (attrString)
+            [self setAttributedString:attrString];
+    }
 }
 
 @end

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
All of the data generated in your IT infrastructure is seriously valuable.
Why? It contains a definitive record of application performance, security
threats, fraudulent activity, and more. Splunk takes this data and makes
sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-d2dcopy2
_______________________________________________
Skim-app-commit mailing list
Skim-app-commit@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/skim-app-commit

Reply via email to