*** empty log message ***
authorhanda <handa>
Mon, 20 Apr 2009 04:14:08 +0000 (04:14 +0000)
committerhanda <handa>
Mon, 20 Apr 2009 04:14:08 +0000 (04:14 +0000)
MText.cs

index db9962d..54b3f20 100644 (file)
--- a/MText.cs
+++ b/MText.cs
@@ -377,8 +377,7 @@ namespace M17N.Core
     {
       check_pos (pos, false);
 
-      MInterval i = (MInterval) intervals.Find (key).Val;
-
+      MInterval i = (MInterval) intervals.Get (key);
       if (i == null)
        return null;
 
@@ -390,8 +389,7 @@ namespace M17N.Core
     {
       check_pos (pos, false);
 
-      MInterval i = (MInterval) intervals.Find (key).Val;
-
+      MInterval i = (MInterval) intervals.Get (key);
       if (i == null)
        return (prop = null);
       prop = i.Get (pos);
@@ -402,8 +400,7 @@ namespace M17N.Core
     {
       check_pos (pos, false);
 
-      MInterval i = (MInterval) intervals.Find (key).Val;
-
+      MInterval i = (MInterval) intervals.Get (key);
       if (i == null)
        return (array = null);
       MTextProperty prop = i.Get (pos, out array);