GGroupBox: Rename "name" property to "title"

This commit is contained in:
Andreas Kling 2019-05-08 14:32:46 +02:00
commit 758e926b99
Notes: sideshowbarker 2024-07-19 14:11:47 +09:00
3 changed files with 12 additions and 12 deletions

View file

@ -127,7 +127,7 @@ void VBWidget::setup_properties()
}
if (m_type == VBWidgetType::GGroupBox) {
VB_ADD_PROPERTY(GGroupBox, "name", name, set_name, string);
VB_ADD_PROPERTY(GGroupBox, "title", title, set_title, string);
}
if (m_type == VBWidgetType::GScrollBar) {