forked from Mirrorlandia_minetest/minetest
Fix warnings introduced by 9b8fa99fe30728c1fcfa73cdf74211841bdae9fb
This commit is contained in:
parent
32ae492657
commit
1ff5c20442
@ -131,7 +131,7 @@ video::SColor GUIEditBoxWithScrollBar::getOverrideColor() const
|
|||||||
//! Turns the border on or off
|
//! Turns the border on or off
|
||||||
void GUIEditBoxWithScrollBar::setDrawBorder(bool border)
|
void GUIEditBoxWithScrollBar::setDrawBorder(bool border)
|
||||||
{
|
{
|
||||||
border = border;
|
m_border = border;
|
||||||
}
|
}
|
||||||
|
|
||||||
//! Sets whether to draw the background
|
//! Sets whether to draw the background
|
||||||
@ -1433,7 +1433,7 @@ void GUIEditBoxWithScrollBar::updateVScrollBar()
|
|||||||
}
|
}
|
||||||
|
|
||||||
// check if a vertical scrollbar is needed ?
|
// check if a vertical scrollbar is needed ?
|
||||||
if (getTextDimension().Height > m_frame_rect.getHeight()) {
|
if (getTextDimension().Height > (u32) m_frame_rect.getHeight()) {
|
||||||
m_frame_rect.LowerRightCorner.X -= m_scrollbar_width;
|
m_frame_rect.LowerRightCorner.X -= m_scrollbar_width;
|
||||||
|
|
||||||
s32 scrollymax = getTextDimension().Height - m_frame_rect.getHeight();
|
s32 scrollymax = getTextDimension().Height - m_frame_rect.getHeight();
|
||||||
|
@ -1517,7 +1517,7 @@ void intlGUIEditBox::updateVScrollBar()
|
|||||||
}
|
}
|
||||||
|
|
||||||
// check if a vertical scrollbar is needed ?
|
// check if a vertical scrollbar is needed ?
|
||||||
if (getTextDimension().Height > FrameRect.getHeight()) {
|
if (getTextDimension().Height > (u32) FrameRect.getHeight()) {
|
||||||
s32 scrollymax = getTextDimension().Height - FrameRect.getHeight();
|
s32 scrollymax = getTextDimension().Height - FrameRect.getHeight();
|
||||||
if (scrollymax != m_vscrollbar->getMax()) {
|
if (scrollymax != m_vscrollbar->getMax()) {
|
||||||
m_vscrollbar->setMax(scrollymax);
|
m_vscrollbar->setMax(scrollymax);
|
||||||
|
Loading…
Reference in New Issue
Block a user