From 73ec1877feef0973c0d32b2b338eb246715306f7 Mon Sep 17 00:00:00 2001 From: "tfarina@chromium.org" Date: Sun, 1 Aug 2010 01:50:55 +0000 Subject: 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 --- chrome/browser/gtk/gtk_chrome_button.h | 6 +++--- 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; -- cgit v1.1