mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-18 11:19:10 +00:00
Add different SetText values to MaxCompat header.
Restores compilation of Max 7 plugin, as its SetText expects a non-const pointer. Additionally, NotifyInfo should already be declared in notify.h.
This commit is contained in:
@ -362,7 +362,7 @@ static void LoadCombo(HWND hCombo, NameType* nameInt, int size, int curVal)
|
||||
void plStandardStage::IInitDlg()
|
||||
{
|
||||
ICustEdit* edit = GetICustEdit(GetDlgItem(fDlg, IDC_ANIM_NAME));
|
||||
edit->SetText(fAnimName.c_str());
|
||||
edit->SetText(const_cast<SETTEXT_VALUE_TYPE>(fAnimName.c_str()));
|
||||
|
||||
HWND hForward = GetDlgItem(fDlg, IDC_FORWARD_COMBO);
|
||||
LoadCombo(hForward, gForward, sizeof(gForward), fForward);
|
||||
|
Reference in New Issue
Block a user