OSDN Git Service

選択領域の表示時の処理を最適化した
[fooeditengine/FooEditEngine.git] / UWP / FooEditEngine.UWP / Direct2D / D2DRenderBase.cs
index 19e9800..2706f6a 100644 (file)
@@ -153,14 +153,14 @@ namespace FooEditEngine
             return false;
         }
 
-        public void DrawOneLine(LineToIndexTable lti, int row, double x, double y, IEnumerable<Selection> Selections)
+        public void DrawOneLine(Document doc,LineToIndexTable lti, int row, double x, double y)
         {
-            this.DrawOneLine(lti,
+            this.DrawOneLine(doc,
+                lti,
                 row,
                 x,
                 y,
-                null,
-                Selections);
+                null);
         }
     }
 }