replace GTK_WIDGET_VISIBLE -> gtk_widget_get_visible()

This commit is contained in:
Garux
2020-05-19 23:46:54 +03:00
parent 112f66fb06
commit ff33df7d45
14 changed files with 20 additions and 20 deletions

View File

@@ -87,7 +87,7 @@ EntityList() :
}
bool visible() const {
return GTK_WIDGET_VISIBLE( GTK_WIDGET( m_window ) );
return gtk_widget_get_visible( GTK_WIDGET( m_window ) );
}
};