From e0dae4054ac49046eb6afbb3cd334efcbb9e5305 Mon Sep 17 00:00:00 2001 From: Frank Hale Date: Tue, 11 Nov 2014 13:09:54 -0500 Subject: [PATCH] Fix code style to be <= 80 lines --- atom/browser/native_window_views.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/atom/browser/native_window_views.cc b/atom/browser/native_window_views.cc index 35c0f1c656..6a105ab7dc 100644 --- a/atom/browser/native_window_views.cc +++ b/atom/browser/native_window_views.cc @@ -229,8 +229,10 @@ NativeWindowViews::NativeWindowViews(content::WebContents* web_contents, #if defined(OS_WIN) if (!has_frame_) { - // set Window style so that we get a minimize and maximize animation when frameless - DWORD frame_style = WS_THICKFRAME | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_CAPTION; + // Set Window style so that we get a minimize and maximize animation when + // frameless. + DWORD frame_style = WS_THICKFRAME | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | + WS_CAPTION; ::SetWindowLong(GetAcceleratedWidget(), GWL_STYLE, frame_style); } #endif