mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-09 01:29:17 +00:00
LibGUI: Move Icon and FontDatabase into the GUI namespace
We also clean up some old references to the old G prefixed GUI classes This also fixes a potential bug with using: C_OBJECT_ABSTRACT(GAbstractButton) instead of C_OBJECT_ABSTRACT(AbstractButton)
This commit is contained in:
parent
57f1c919df
commit
6a3b12664a
Notes:
sideshowbarker
2024-07-19 08:51:30 +09:00
Author: https://github.com/shannonbooth
Commit: 6a3b12664a
Pull-request: https://github.com/SerenityOS/serenity/pull/1370
24 changed files with 120 additions and 104 deletions
|
@ -79,7 +79,7 @@ PropertiesDialog::PropertiesDialog(GUI::FileSystemModel& model, String path, boo
|
|||
m_name_box->set_text(m_name);
|
||||
m_name_box->on_change = [&, disable_rename]() {
|
||||
if (disable_rename) {
|
||||
m_name_box->set_text(m_name); //FIXME: GTextBox does not support set_enabled yet...
|
||||
m_name_box->set_text(m_name); //FIXME: GUI::TextBox does not support set_enabled yet...
|
||||
} else {
|
||||
m_name_dirty = m_name != m_name_box->text();
|
||||
m_apply_button->set_enabled(true);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue