| Line 3988... |
Line 3988... |
| 3988 |
}
|
3988 |
}
|
| 3989 |
this->UpdateScriptType();
|
3989 |
this->UpdateScriptType();
|
| 3990 |
this->UpdateChanged();
|
3990 |
this->UpdateChanged();
|
| 3991 |
}
|
3991 |
}
|
| 3992 |
private: System::Void TextDesc_TextChanged(System::Object^ sender, System::EventArgs^ e) {
|
3992 |
private: System::Void TextDesc_TextChanged(System::Object^ sender, System::EventArgs^ e) {
|
| 3993 |
if ( !m_bLoading )
|
- |
|
| 3994 |
m_pPackage->SetDescription(CyStringFromSystemString(this->TextDesc->Text).FindReplace("\n", "<br>"));
|
3993 |
if ( !m_bLoading ) m_pPackage->setDescription(_S(this->TextDesc->Text).findReplace("\n", "<br>"));
|
| 3995 |
this->UpdateChanged();
|
3994 |
this->UpdateChanged();
|
| 3996 |
}
|
3995 |
}
|
| 3997 |
private: System::Void ComboVersion_SelectedIndexChanged(System::Object^ sender, System::EventArgs^ e) {
|
3996 |
private: System::Void ComboVersion_SelectedIndexChanged(System::Object^ sender, System::EventArgs^ e) {
|
| 3998 |
if ( this->ComboVersion->SelectedIndex >= this->ComboVersion->Items->Count - 1 )
|
3997 |
if ( this->ComboVersion->SelectedIndex >= this->ComboVersion->Items->Count - 1 )
|
| 3999 |
{
|
3998 |
{
|
| Line 4569... |
Line 4568... |
| 4569 |
}
|
4568 |
}
|
| 4570 |
private: System::Void ComboPluginType_SelectedIndexChanged(System::Object^ sender, System::EventArgs^ e) {
|
4569 |
private: System::Void ComboPluginType_SelectedIndexChanged(System::Object^ sender, System::EventArgs^ e) {
|
| 4571 |
if ( m_pPackage->GetType() == TYPE_SPK )
|
4570 |
if ( m_pPackage->GetType() == TYPE_SPK )
|
| 4572 |
{
|
4571 |
{
|
| 4573 |
if ( !m_bLoading )
|
4572 |
if ( !m_bLoading )
|
| 4574 |
((CSpkFile *)m_pPackage)->SetPluginType(this->ComboPluginType->SelectedIndex);
|
4573 |
((CSpkFile *)m_pPackage)->setPluginType(this->ComboPluginType->SelectedIndex);
|
| 4575 |
this->UpdateChanged();
|
4574 |
this->UpdateChanged();
|
| 4576 |
}
|
4575 |
}
|
| 4577 |
}
|
4576 |
}
|
| 4578 |
private: System::Void CheckExistingText_CheckedChanged(System::Object^ sender, System::EventArgs^ e) {
|
4577 |
private: System::Void CheckExistingText_CheckedChanged(System::Object^ sender, System::EventArgs^ e) {
|
| 4579 |
this->ListShipText->Visible = !this->CheckExistingText->Checked;
|
4578 |
this->ListShipText->Visible = !this->CheckExistingText->Checked;
|