Reformat and remove unused imports

This commit is contained in:
itmuckel 2022-05-08 17:55:00 +02:00 committed by Robin Gareus
parent 9c9a7bbf97
commit 77356c0ebb
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
5 changed files with 84 additions and 106 deletions

View file

@ -40,8 +40,8 @@ namespace WM {
class ArdourDialog : public Gtk::Dialog, public ARDOUR::SessionHandlePtr
{
public:
ArdourDialog (std::string title, bool modal = false, bool use_separator = false);
ArdourDialog (Gtk::Window& parent, std::string title, bool modal = false, bool use_separator = false);
explicit ArdourDialog (const std::string& title, bool modal = false, bool use_separator = false);
ArdourDialog (Gtk::Window& parent, const std::string& title, bool modal = false, bool use_separator = false);
~ArdourDialog();
bool on_focus_in_event (GdkEventFocus*);