mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-22 10:05:37 -04:00
Adapted to changes in GDCore.
git-svn-id: svn://localhost@710 8062f311-0dae-4547-b526-b8ab9ac864a5
This commit is contained in:
@@ -705,7 +705,7 @@ void ProjectManager::OnmodVarSceneMenuISelected(wxCommandEvent& event)
|
||||
return;
|
||||
}
|
||||
|
||||
ChooseVariableDialog dialog(this, (*scene)->GetVariables(), /*editingOnly=*/true);
|
||||
gd::ChooseVariableDialog dialog(this, (*scene)->GetVariables(), /*editingOnly=*/true);
|
||||
if ( dialog.ShowModal() == 1 )
|
||||
{
|
||||
(*scene)->wasModified = true;
|
||||
@@ -1062,7 +1062,7 @@ void ProjectManager::OneditGblVarMenuItemSelected(wxCommandEvent& event)
|
||||
gdTreeItemGameData * data;
|
||||
if ( !GetGameOfSelectedItem(game, data) ) return;
|
||||
|
||||
ChooseVariableDialog dialog(this, game->GetVariables(), /*editingOnly=*/true);
|
||||
gd::ChooseVariableDialog dialog(this, game->GetVariables(), /*editingOnly=*/true);
|
||||
if ( dialog.ShowModal() == 1 )
|
||||
{
|
||||
for (unsigned int i = 0;i<game->GetLayouts().size();++i)
|
||||
|
||||
Reference in New Issue
Block a user