From b403f7b8eda871f5795ab344471d906a68ef6073 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 12 Mar 2025 21:10:24 -0600 Subject: [PATCH] fix typo in a DEBUG_TRACE message --- libs/gtkmm2ext/actions.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/gtkmm2ext/actions.cc b/libs/gtkmm2ext/actions.cc index 162c078ce3..073de5c4b7 100644 --- a/libs/gtkmm2ext/actions.cc +++ b/libs/gtkmm2ext/actions.cc @@ -495,7 +495,7 @@ ActionManager::register_toggle_action (RefPtr group, fullpath += name; RefPtr act = ToggleAction::create (name, label); - DEBUG_TRACE (PBD::DEBUG::Actions, string_compose ("created action %1 in %2 success: %2\n", name, group->get_name(), (bool) act)); + DEBUG_TRACE (PBD::DEBUG::Actions, string_compose ("created action %1 in %2 success: %3\n", name, group->get_name(), (bool) act)); if (actions.insert (ActionMap::value_type (fullpath, act)).second) { group->add (act, sl);