From 2b6ad6846a1181d15530499283ca14b3317504c6 Mon Sep 17 00:00:00 2001 From: handa Date: Tue, 6 Jan 2009 23:58:36 +0000 Subject: [PATCH] *** empty log message *** --- MText.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/MText.cs b/MText.cs index cff99d4..5d9fbf8 100644 --- a/MText.cs +++ b/MText.cs @@ -208,13 +208,13 @@ namespace M17N.Core return (new MText (this.sb)); } - public MText ins (int pos, MText mt) + public MText ins (int pos, ref MText mt) { insert (pos, mt, 0, mt.nchars); return this; } - public MText ins (int pos, MText mt, int from, int to) + public MText ins (int pos, ref MText mt, int from, int to) { insert (pos, mt, from, to); return this; @@ -226,8 +226,6 @@ namespace M17N.Core nchars -= to - from; return this; } - - } public class MTextProperty -- 1.7.10.4