LibGUI: Remove one ancient GMENU_DEBUG debug log

This commit is contained in:
Andreas Kling 2021-03-23 11:09:11 +01:00
parent 0deb0c6891
commit d20e3dbe8b
3 changed files with 0 additions and 8 deletions

View file

@ -174,10 +174,6 @@
#cmakedefine01 GLOBAL_DTORS_DEBUG
#endif
#ifndef GMENU_DEBUG
#cmakedefine01 GMENU_DEBUG
#endif
#ifndef GZIP_DEBUG
#cmakedefine01 GZIP_DEBUG
#endif

View file

@ -126,7 +126,6 @@ set(GEMINI_DEBUG ON)
set(GEMINIJOB_DEBUG ON)
set(GENERATE_DEBUG_CODE ON)
set(GLOBAL_DTORS_DEBUG ON)
set(GMENU_DEBUG ON)
set(HEAP_DEBUG ON)
set(HEX_DEBUG ON)
set(HTML_SCRIPT_DEBUG ON)

View file

@ -69,9 +69,6 @@ void Menu::set_icon(const Gfx::Bitmap* icon)
void Menu::add_action(NonnullRefPtr<Action> 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)