From 45169015fb821d38d4e1ab00fc01166c8bfe72ed Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Wed, 4 May 2016 18:09:43 +0000 Subject: fixed generating by VI git-svn-id: http://svn.miranda-ng.org/main/trunk@16802 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- tools/Langpack Suite/Form1.cs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'tools') diff --git a/tools/Langpack Suite/Form1.cs b/tools/Langpack Suite/Form1.cs index c9707f5f78..2f6b2eb7aa 100644 --- a/tools/Langpack Suite/Form1.cs +++ b/tools/Langpack Suite/Form1.cs @@ -274,10 +274,10 @@ namespace Langpack_Suite s = ReadFile.ReadLine().Trim(); while (s != "") { - if (s.StartsWith(" ") || s.Contains(".dll")) + if (s.StartsWith(" ") || s.StartsWith("¤") || s.Contains(".dll")) { int l = s.IndexOf("."); - if (s.StartsWith(" ")) + if (s.StartsWith(" ") || s.StartsWith("¤")) s = s.Substring(2, l - 2); else s = s.Substring(0, l); @@ -294,10 +294,10 @@ namespace Langpack_Suite s = ReadFile.ReadLine().Trim(); while (s != "") { - if (s.StartsWith(" ") || s.Contains("DbChecker.dll")) + if (s.StartsWith(" ") || s.StartsWith("¤") || s.Contains("DbChecker.dll")) { int l = s.IndexOf("."); - if (s.StartsWith(" ")) + if (s.StartsWith(" ") || s.StartsWith("¤")) s = s.Substring(2, l - 2); else s = s.Substring(0, l); @@ -372,11 +372,11 @@ namespace Langpack_Suite while (s != "") { StreamReader plug_in; - if (s.StartsWith(" ") || s.Contains(".dll")) + if (s.StartsWith(" ") || s.StartsWith("¤") || s.Contains(".dll")) { string back_s = s; int l = s.IndexOf("."); - if (s.StartsWith(" ")) + if (s.StartsWith(" ") || s.StartsWith("¤")) s = s.Substring(2, l - 2); else s = s.Substring(0, l); @@ -464,11 +464,11 @@ namespace Langpack_Suite while (s != "") { StreamReader plug_in; - if (s.StartsWith(" ") || s.Contains(".dll")) + if (s.StartsWith(" ") || s.StartsWith("¤") || s.Contains(".dll")) { string back_s = s; int l = s.IndexOf("."); - if (s.StartsWith(" ")) + if (s.StartsWith(" ") || s.StartsWith("¤")) s = s.Substring(2, l - 2); else s = s.Substring(0, l); -- cgit v1.2.3