Subversion Repositories spk

Rev

Rev 180 | Rev 197 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 180 Rev 191
Line 78... Line 78...
78
		{
78
		{
79
			this->ComboType->Items->Add("- Automatic -");
79
			this->ComboType->Items->Add("- Automatic -");
80
			this->ComboUnsure->Items->Add("- Dont Add -");
80
			this->ComboUnsure->Items->Add("- Dont Add -");
81
			for ( int i = 0; i < FILETYPE_MAX; i++ )
81
			for ( int i = 0; i < FILETYPE_MAX; i++ )
82
			{
82
			{
83
				this->ComboType->Items->Add(SystemStringFromCyString(GetFileTypeString(i)));
83
				this->ComboType->Items->Add(_US(GetFileTypeString(i)));
84
				this->ComboUnsure->Items->Add(SystemStringFromCyString(GetFileTypeString(i)));
84
				this->ComboUnsure->Items->Add(_US(GetFileTypeString(i)));
85
			}
85
			}
86
 
86
 
87
			this->ComboType->SelectedIndex = 0;
87
			this->ComboType->SelectedIndex = 0;
88
			this->ComboUnsure->SelectedIndex = FILETYPE_EXTRA + 1;
88
			this->ComboUnsure->SelectedIndex = FILETYPE_EXTRA + 1;
89
		}
89
		}