Subversion Repositories spk

Rev

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

Rev 94 Rev 182
Line 400... Line 400...
400
		}
400
		}
401
#pragma endregion
401
#pragma endregion
402
	private: System::Void ModDiff_Load(System::Object^  sender, System::EventArgs^  e) {
402
	private: System::Void ModDiff_Load(System::Object^  sender, System::EventArgs^  e) {
403
			 }
403
			 }
404
private: System::Void comboBox1_SelectedIndexChanged(System::Object^  sender, System::EventArgs^  e) {
404
private: System::Void comboBox1_SelectedIndexChanged(System::Object^  sender, System::EventArgs^  e) {
405
			 int fake = m_pPackages->FindNextFakePatch(0, CyStringFromSystemString(this->comboBox1->Text).GetToken(" (", 1, 1));
405
			 int fake = m_pPackages->findNextFakePatch(0, _S(this->comboBox1->Text).token(" (", 1));
406
 
406
 
407
			 this->comboBox2->Items->Add("- None -");
407
			 this->comboBox2->Items->Add("- None -");
408
			 for ( int i = 1; i < fake; i++ )
408
			 for ( int i = 1; i < fake; i++ )
409
				 this->comboBox2->Items->Add(SystemStringFromCyString(CyString::Number(i).PadNumber(2)) + ".cat");
409
				 this->comboBox2->Items->Add(_US(Utils::String::PadNumber(i, 2)) + ".cat");
410
 
410
 
411
			 this->pictureBox1->Image = nullptr;
411
			 this->pictureBox1->Image = nullptr;
412
			 SetImage(this->pictureBox2);
412
			 SetImage(this->pictureBox2);
413
			 this->comboBox1->Enabled = false;
413
			 this->comboBox1->Enabled = false;
414
			 this->panel3->Enabled = true;
414
			 this->panel3->Enabled = true;