diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2016-05-04 18:09:43 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2016-05-04 18:09:43 +0000 |
commit | 45169015fb821d38d4e1ab00fc01166c8bfe72ed (patch) | |
tree | 4f0bbdeb57ab0663ca83cfced31a0b27ac67b8f6 /tools | |
parent | 8e09c4d75e26ed3fc165cd35fd1fc79614b1420e (diff) |
fixed generating by VI
git-svn-id: http://svn.miranda-ng.org/main/trunk@16802 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Langpack Suite/Form1.cs | 16 |
1 files changed, 8 insertions, 8 deletions
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);
|