Fix cpp linting
This commit is contained in:
parent
4f0caffc3b
commit
d1b3ba39bd
4 changed files with 10 additions and 5 deletions
|
@ -282,7 +282,8 @@ void Window::OnExecuteWindowsCommand(const std::string& command_name) {
|
|||
Emit("app-command", command_name);
|
||||
}
|
||||
|
||||
void Window::OnTouchBarItemResult(const std::string& item_type, const std::vector<std::string>& args) {
|
||||
void Window::OnTouchBarItemResult(const std::string& item_type,
|
||||
const std::vector<std::string>& args) {
|
||||
Emit("-touch-bar-interaction", item_type, args);
|
||||
}
|
||||
|
||||
|
|
|
@ -85,7 +85,8 @@ class Window : public mate::TrackableObject<Window>,
|
|||
void OnRendererUnresponsive() override;
|
||||
void OnRendererResponsive() override;
|
||||
void OnExecuteWindowsCommand(const std::string& command_name) override;
|
||||
void OnTouchBarItemResult(const std::string& item_type, const std::vector<std::string>& args) override;
|
||||
void OnTouchBarItemResult(const std::string& item_type,
|
||||
const std::vector<std::string>& args) override;
|
||||
|
||||
#if defined(OS_WIN)
|
||||
void OnWindowMessage(UINT message, WPARAM w_param, LPARAM l_param) override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue