diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-01-06 09:09:19 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-01-06 09:09:19 +0000 |
commit | 01093811362df3064bd5043c180ca848fea12218 (patch) | |
tree | 74303c97d81e6be0f88f2ae3a46a05e7385f225a /tools/Langpack Suite | |
parent | 93a30472e0ec1539d002b9e6fe853ffcd48a79c6 (diff) |
fixed output file changing
git-svn-id: http://svn.miranda-ng.org/main/trunk@2985 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'tools/Langpack Suite')
-rw-r--r-- | tools/Langpack Suite/Form1.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/Langpack Suite/Form1.cs b/tools/Langpack Suite/Form1.cs index 40c3b3d38c..ab64f79a9f 100644 --- a/tools/Langpack Suite/Form1.cs +++ b/tools/Langpack Suite/Form1.cs @@ -189,8 +189,7 @@ namespace Langpack_Suite InfMessageLangBox.Text = LocaleText + "\r\n";
FolderName = Directory.GetParent(Directory.GetCurrentDirectory()).ToString() + "\\" + LangpacksComboBox.Text;
- if (output == "")
- output = FolderName + "\\" + LangpackNameEdit.Text + ".txt";
+ output = FolderName + "\\" + LangpackNameEdit.Text + ".txt";
if (File.Exists(output))
File.Delete(output);
|