From b62091d7d23805b781f9116b6a181b754196e6f3 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 24 Oct 2019 21:07:25 -0600 Subject: [PATCH] add new DEBUG bit for GuiStartup --- gtk2_ardour/debug.cc | 1 + gtk2_ardour/debug.h | 1 + 2 files changed, 2 insertions(+) diff --git a/gtk2_ardour/debug.cc b/gtk2_ardour/debug.cc index 4328771696..6829a6b9ee 100644 --- a/gtk2_ardour/debug.cc +++ b/gtk2_ardour/debug.cc @@ -31,3 +31,4 @@ PBD::DebugBits PBD::DEBUG::Accelerators = PBD::new_debug_bit ("accelerators"); PBD::DebugBits PBD::DEBUG::GUITiming = PBD::new_debug_bit ("guitiming"); PBD::DebugBits PBD::DEBUG::EngineControl = PBD::new_debug_bit ("enginecontrol"); PBD::DebugBits PBD::DEBUG::Selection = PBD::new_debug_bit ("selection"); +PBD::DebugBits PBD::DEBUG::GuiStartup = PBD::new_debug_bit ("guistartup"); diff --git a/gtk2_ardour/debug.h b/gtk2_ardour/debug.h index 5dd6cb32ef..e82b895510 100644 --- a/gtk2_ardour/debug.h +++ b/gtk2_ardour/debug.h @@ -32,6 +32,7 @@ namespace PBD { extern DebugBits GUITiming; extern DebugBits EngineControl; extern DebugBits Selection; + extern DebugBits GuiStartup; } }