Browse Source

Fix cpp linter errors

Kevin Sawicki 8 years ago
parent
commit
0244a73c49
1 changed files with 4 additions and 4 deletions
  1. 4 4
      atom/browser/ui/views/menu_layout.cc

+ 4 - 4
atom/browser/ui/views/menu_layout.cc

@@ -16,10 +16,10 @@ namespace {
 #if defined(OS_WIN)
 gfx::Rect SubtractBorderSize(gfx::Rect bounds) {
   gfx::Point borderSize = gfx::Point(
-    GetSystemMetrics(SM_CXSIZEFRAME) - 1, // width
-    GetSystemMetrics(SM_CYSIZEFRAME) - 1  // height
-  );
-  gfx::Point dpiAdjustedSize = display::win::ScreenWin::ScreenToDIPPoint(borderSize);
+      GetSystemMetrics(SM_CXSIZEFRAME) - 1,   // width
+      GetSystemMetrics(SM_CYSIZEFRAME) - 1);  // height
+  gfx::Point dpiAdjustedSize =
+      display::win::ScreenWin::ScreenToDIPPoint(borderSize);
 
   bounds.set_x(bounds.x() + dpiAdjustedSize.x());
   bounds.set_y(bounds.y() + dpiAdjustedSize.y());