mirror of
https://github.com/scorpion-26/gBar.git
synced 2024-11-22 03:02:49 +00:00
Add checks for null GtkWidget
Gtk complained about invalid widgets, because they were null.
This commit is contained in:
parent
eb8e0bc2b5
commit
dc7c7b7902
1 changed files with 4 additions and 2 deletions
|
@ -162,6 +162,7 @@ void Widget::RemoveChild(Widget* widget)
|
|||
|
||||
void Widget::SetVisible(bool visible)
|
||||
{
|
||||
if (m_Widget)
|
||||
gtk_widget_set_visible(m_Widget, visible);
|
||||
}
|
||||
|
||||
|
@ -683,6 +684,7 @@ void Slider::SetOrientation(Orientation orientation)
|
|||
|
||||
void Slider::SetValue(double value)
|
||||
{
|
||||
if (m_Widget)
|
||||
gtk_range_set_value((GtkRange*)m_Widget, value);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue