From 3625c28d54a9f2c24fd058e76bfca7f214d747ce Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sat, 16 Nov 2024 19:39:20 +0100 Subject: [PATCH] Remove ambiguous enum bit combinations --- libs/widgets/widgets/tabbable.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/libs/widgets/widgets/tabbable.h b/libs/widgets/widgets/tabbable.h index 36ae804a37..f579724585 100644 --- a/libs/widgets/widgets/tabbable.h +++ b/libs/widgets/widgets/tabbable.h @@ -55,11 +55,9 @@ public: PaneBottom = 0x04, ///< bottom Ebox is a resizable Pane AttLeft = 0x08, ///< if PaneLeft is not set, pack a fixed size Ebox on the left (Editor-Mixer) AttBottom = 0x10, ///< bottom is a fixed size EBox attachment - PaneLeftBtm = 0x11, - PaneRightBtm = 0x12, }; - Tabbable (const std::string& user_visible_name, std::string const & untranslated_name, Gtk::Widget* top = NULL, bool tabbed_by_default = true, PaneLayout pl = PaneRightBtm); + Tabbable (const std::string& user_visible_name, std::string const & untranslated_name, Gtk::Widget* top = NULL, bool tabbed_by_default = true, PaneLayout pl = PaneRight); ~Tabbable (); void add_to_notebook (Gtk::Notebook& notebook);