From 0dc3e6ac7cc343b16977c96a35301961d2f4cd4a Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Thu, 15 May 2014 16:44:56 +0800 Subject: [PATCH] :lipstick: Fix cpplint warning. --- atom/browser/native_window_gtk.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/atom/browser/native_window_gtk.cc b/atom/browser/native_window_gtk.cc index 205201e5b7f2..0b49b0420c7f 100644 --- a/atom/browser/native_window_gtk.cc +++ b/atom/browser/native_window_gtk.cc @@ -266,10 +266,10 @@ void NativeWindowGtk::SetContentSize(const gfx::Size& size) { if (!has_frame_ || !has_ever_been_shown_) { gtk_window_util::SetWindowSize(window_, size); } else { - gfx::Size window_size = GetSize(); - gfx::Size content_size = GetContentSize(); - gfx::Size target(size.width() + window_size.width() - content_size.width(), - size.height() + window_size.height() - content_size.height()); + gfx::Size large = GetSize(); + gfx::Size small = GetContentSize(); + gfx::Size target(size.width() + large.width() - small.width(), + size.height() + large.height() - small.height()); gtk_window_util::SetWindowSize(window_, target); } }