mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 05:17:35 +00:00
LibGUI: Remove one ancient GMENU_DEBUG debug log
This commit is contained in:
parent
0deb0c6891
commit
d20e3dbe8b
3 changed files with 0 additions and 8 deletions
|
@ -174,10 +174,6 @@
|
||||||
#cmakedefine01 GLOBAL_DTORS_DEBUG
|
#cmakedefine01 GLOBAL_DTORS_DEBUG
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef GMENU_DEBUG
|
|
||||||
#cmakedefine01 GMENU_DEBUG
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef GZIP_DEBUG
|
#ifndef GZIP_DEBUG
|
||||||
#cmakedefine01 GZIP_DEBUG
|
#cmakedefine01 GZIP_DEBUG
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -126,7 +126,6 @@ set(GEMINI_DEBUG ON)
|
||||||
set(GEMINIJOB_DEBUG ON)
|
set(GEMINIJOB_DEBUG ON)
|
||||||
set(GENERATE_DEBUG_CODE ON)
|
set(GENERATE_DEBUG_CODE ON)
|
||||||
set(GLOBAL_DTORS_DEBUG ON)
|
set(GLOBAL_DTORS_DEBUG ON)
|
||||||
set(GMENU_DEBUG ON)
|
|
||||||
set(HEAP_DEBUG ON)
|
set(HEAP_DEBUG ON)
|
||||||
set(HEX_DEBUG ON)
|
set(HEX_DEBUG ON)
|
||||||
set(HTML_SCRIPT_DEBUG ON)
|
set(HTML_SCRIPT_DEBUG ON)
|
||||||
|
|
|
@ -69,9 +69,6 @@ void Menu::set_icon(const Gfx::Bitmap* icon)
|
||||||
void Menu::add_action(NonnullRefPtr<Action> action)
|
void Menu::add_action(NonnullRefPtr<Action> action)
|
||||||
{
|
{
|
||||||
m_items.append(make<MenuItem>(m_menu_id, move(action)));
|
m_items.append(make<MenuItem>(m_menu_id, move(action)));
|
||||||
#if GMENU_DEBUG
|
|
||||||
dbgln("GUI::Menu::add_action(): MenuItem Menu ID: {}", m_menu_id);
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Menu& Menu::add_submenu(const String& name)
|
Menu& Menu::add_submenu(const String& name)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue