From 764de92f59135a4040fcfde02b56378717ebed5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Tue, 17 Jun 2008 19:38:57 +0000 Subject: [PATCH] Fix boggus ifdef. Thanks Vasilis. Parens shouldn't be needed though. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26001 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/aboutsystem/AboutSystem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/aboutsystem/AboutSystem.cpp b/src/apps/aboutsystem/AboutSystem.cpp index 81a84eae20..17e1693f01 100644 --- a/src/apps/aboutsystem/AboutSystem.cpp +++ b/src/apps/aboutsystem/AboutSystem.cpp @@ -238,7 +238,7 @@ AboutView::AboutView(const BRect &rect) stringView->ResizeToPreferred(); // GCC version -#ifdef __GNUC__ != 2 +#if __GNUC__ != 2 r.OffsetBy(0, textHeight); r.bottom = r.top + textHeight;