diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-01 01:50:55 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-01 01:50:55 +0000 |
commit | 73ec1877feef0973c0d32b2b338eb246715306f7 (patch) | |
tree | 790030744dcca8d18c774cb9e76ec53674f714c5 | |
parent | 96d630012d7e22411dcf0852d638feba1063f126 (diff) | |
download | chromium_src-73ec1877feef0973c0d32b2b338eb246715306f7.zip chromium_src-73ec1877feef0973c0d32b2b338eb246715306f7.tar.gz chromium_src-73ec1877feef0973c0d32b2b338eb246715306f7.tar.bz2 |
gtk: Fix presubmit errors.
chrome/browser/gtk/gtk_chrome_button.h:21: Extra space before ( in function
call [whitespace/parens] [4]
chrome/browser/gtk/gtk_chrome_button.h:23: Extra space before ( in function
call [whitespace/parens] [4]
chrome/browser/gtk/gtk_chrome_button.h:25: Extra space before ( in function
call [whitespace/parens] [4]
chrome/browser/gtk/gtk_chrome_link_button.h:27: Extra space before ( in
function call [whitespace/parens] [4]
chrome/browser/gtk/gtk_chrome_link_button.h:29: Extra space before ( in
function call [whitespace/parens] [4]
chrome/browser/gtk/gtk_chrome_link_button.h:31: Extra space before ( in
function call [whitespace/parens] [4]
BUG=50266
TEST=None
Review URL: http://codereview.chromium.org/3064027
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54486 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/gtk/gtk_chrome_button.h | 6 | ||||
-rw-r--r-- | chrome/browser/gtk/gtk_chrome_link_button.h | 11 |
2 files changed, 8 insertions, 9 deletions
diff --git a/chrome/browser/gtk/gtk_chrome_button.h b/chrome/browser/gtk/gtk_chrome_button.h index dc683a5..e64c00b 100644 --- a/chrome/browser/gtk/gtk_chrome_button.h +++ b/chrome/browser/gtk/gtk_chrome_button.h @@ -18,11 +18,11 @@ G_BEGIN_DECLS (G_TYPE_CHECK_CLASS_CAST((klass), GTK_TYPE_CHROME_BUTTON, \ GtkChromeButtonClass)) #define GTK_IS_CHROME_BUTTON(obj) \ - (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_CHROME_BUTTON)) + (G_TYPE_CHECK_INSTANCE_TYPE((obj), GTK_TYPE_CHROME_BUTTON)) #define GTK_IS_CHROME_BUTTON_CLASS(klass) \ - (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_CHROME_BUTTON)) + (G_TYPE_CHECK_CLASS_TYPE((klass), GTK_TYPE_CHROME_BUTTON)) #define GTK_CHROME_BUTTON_GET_CLASS(obj) \ - (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_CHROME_BUTTON, GtkChromeButton)) + (G_TYPE_INSTANCE_GET_CLASS((obj), GTK_TYPE_CHROME_BUTTON, GtkChromeButton)) typedef struct _GtkChromeButton GtkChromeButton; typedef struct _GtkChromeButtonClass GtkChromeButtonClass; diff --git a/chrome/browser/gtk/gtk_chrome_link_button.h b/chrome/browser/gtk/gtk_chrome_link_button.h index 7e040d6..4cde366 100644 --- a/chrome/browser/gtk/gtk_chrome_link_button.h +++ b/chrome/browser/gtk/gtk_chrome_link_button.h @@ -1,4 +1,4 @@ -// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -24,13 +24,12 @@ G_BEGIN_DECLS GTK_TYPE_CHROME_LINK_BUTTON, \ GtkChromeLinkButtonClass)) #define GTK_IS_CHROME_LINK_BUTTON(obj) \ - (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_CHROME_LINK_BUTTON)) + (G_TYPE_CHECK_INSTANCE_TYPE((obj), GTK_TYPE_CHROME_LINK_BUTTON)) #define GTK_IS_CHROME_LINK_BUTTON_CLASS(klass) \ - (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_CHROME_LINK_BUTTON)) + (G_TYPE_CHECK_CLASS_TYPE((klass), GTK_TYPE_CHROME_LINK_BUTTON)) #define GTK_CHROME_LINK_BUTTON_GET_CLASS(obj) \ - (G_TYPE_INSTANCE_GET_CLASS ((obj), \ - GTK_TYPE_CHROME_LINK_BUTTON, \ - GtkChromeLinkButton)) + (G_TYPE_INSTANCE_GET_CLASS((obj), GTK_TYPE_CHROME_LINK_BUTTON, \ + GtkChromeLinkButton)) typedef struct _GtkChromeLinkButton GtkChromeLinkButton; typedef struct _GtkChromeLinkButtonClass GtkChromeLinkButtonClass; |