From 2e0de4043635ecadd59e77456219af497fce80a0 Mon Sep 17 00:00:00 2001 From: Philippe Houdoin Date: Wed, 8 Sep 2010 08:43:22 +0000 Subject: [PATCH] =?UTF-8?q?Style=20fix,=20as=20suggested=20by=20Jer=C3=83?= =?UTF-8?q?=C2=B4me.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38575 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/glteapot/ObjectView.cpp | 4 ++-- src/preferences/backgrounds/BackgroundsView.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/apps/glteapot/ObjectView.cpp b/src/apps/glteapot/ObjectView.cpp index 590a608d2d..c699dd200f 100644 --- a/src/apps/glteapot/ObjectView.cpp +++ b/src/apps/glteapot/ObjectView.cpp @@ -518,8 +518,8 @@ ObjectView::MouseMoved(BPoint point, uint32 transit, const BMessage *msg) } } else { void* object = fObjects.ItemAt(ObjectAtPoint(point)); - BCursor cursor(object != NULL ? - B_CURSOR_ID_GRAB : B_CURSOR_ID_SYSTEM_DEFAULT); + BCursor cursor(object != NULL + ? B_CURSOR_ID_GRAB : B_CURSOR_ID_SYSTEM_DEFAULT); SetViewCursor(&cursor); } } diff --git a/src/preferences/backgrounds/BackgroundsView.cpp b/src/preferences/backgrounds/BackgroundsView.cpp index 1077b1442a..d1db60156b 100644 --- a/src/preferences/backgrounds/BackgroundsView.cpp +++ b/src/preferences/backgrounds/BackgroundsView.cpp @@ -1204,8 +1204,8 @@ void PreView::MouseMoved(BPoint point, uint32 transit, const BMessage* message) { if (!IsTracking()) { - BCursor cursor(IsEnabled() ? - B_CURSOR_ID_GRAB : B_CURSOR_ID_SYSTEM_DEFAULT); + BCursor cursor(IsEnabled() + ? B_CURSOR_ID_GRAB : B_CURSOR_ID_SYSTEM_DEFAULT); SetViewCursor(&cursor); } else { float x, y;