From 7adef178b4e86696fdda766e42ec5f856fdcd305 Mon Sep 17 00:00:00 2001 From: itsmattkc Date: Mon, 24 Jun 2019 18:36:16 -0700 Subject: [PATCH] improved clarity in core --- app/core.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app/core.cpp b/app/core.cpp index 3243e754b..8f9b5aa24 100644 --- a/app/core.cpp +++ b/app/core.cpp @@ -50,7 +50,7 @@ void Core::Start() parser.addVersionOption(); // Project from command line option - // FIXME: What's the correct way to make an "optional" positional argument? + // FIXME: What's the correct way to make a visually "optional" positional argument? parser.addPositionalArgument("[project]", tr("Project to open on startup")); // Create fullscreen option @@ -86,7 +86,10 @@ void Core::Start() olive::panel_focus_manager = new PanelFocusManager(this); // Connect the PanelFocusManager to the application's focus change signal - connect(app, SIGNAL(focusChanged(QWidget*, QWidget*)), olive::panel_focus_manager, SLOT(FocusChanged(QWidget*, QWidget*))); + connect(app, + SIGNAL(focusChanged(QWidget*, QWidget*)), + olive::panel_focus_manager, + SLOT(FocusChanged(QWidget*, QWidget*))); // Create main window and open it main_window_ = new olive::MainWindow();