mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-03-30 09:06:43 +00:00
Get rid of deprecated warning for eventWindowChangeCoord
This commit is contained in:
parent
229a91a625
commit
0f2152903e
4 changed files with 4 additions and 4 deletions
|
@ -114,7 +114,7 @@ void ReviewDialog::onScrollChangePosition(MyGUI::VScrollPtr scroller, size_t pos
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void ReviewDialog::onWindowResize(MyGUI::WidgetPtr window)
|
void ReviewDialog::onWindowResize(MyGUI::Window* window)
|
||||||
{
|
{
|
||||||
updateScroller();
|
updateScroller();
|
||||||
}
|
}
|
||||||
|
|
|
@ -85,7 +85,7 @@ namespace MWGui
|
||||||
void updateSkillArea();
|
void updateSkillArea();
|
||||||
|
|
||||||
void onScrollChangePosition(MyGUI::VScrollPtr scroller, size_t pos);
|
void onScrollChangePosition(MyGUI::VScrollPtr scroller, size_t pos);
|
||||||
void onWindowResize(MyGUI::WidgetPtr window);
|
void onWindowResize(MyGUI::Window* window);
|
||||||
|
|
||||||
static const int lineHeight;
|
static const int lineHeight;
|
||||||
|
|
||||||
|
|
|
@ -76,7 +76,7 @@ void StatsWindow::onScrollChangePosition(MyGUI::VScrollPtr scroller, size_t pos)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void StatsWindow::onWindowResize(MyGUI::WidgetPtr window)
|
void StatsWindow::onWindowResize(MyGUI::Window* window)
|
||||||
{
|
{
|
||||||
updateScroller();
|
updateScroller();
|
||||||
}
|
}
|
||||||
|
|
|
@ -58,7 +58,7 @@ namespace MWGui
|
||||||
void updateScroller();
|
void updateScroller();
|
||||||
|
|
||||||
void onScrollChangePosition(MyGUI::VScrollPtr scroller, size_t pos);
|
void onScrollChangePosition(MyGUI::VScrollPtr scroller, size_t pos);
|
||||||
void onWindowResize(MyGUI::WidgetPtr window);
|
void onWindowResize(MyGUI::Window* window);
|
||||||
|
|
||||||
static const int lineHeight;
|
static const int lineHeight;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue