From 1c0f89a7fdb3123261179d694c50c7eaf5609241 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20A=C3=9Fmus?= Date: Sun, 10 May 2009 11:21:24 +0000 Subject: [PATCH] Fixed small coding style violations. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30696 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/deskcalc/CalcWindow.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/apps/deskcalc/CalcWindow.cpp b/src/apps/deskcalc/CalcWindow.cpp index cce0e0f977..0c477234f8 100644 --- a/src/apps/deskcalc/CalcWindow.cpp +++ b/src/apps/deskcalc/CalcWindow.cpp @@ -38,10 +38,10 @@ CalcWindow::CalcWindow(BRect frame, BMessage *settings) fCalcView = new CalcView(frame, baseColor, settings); // create replicant dragger - BRect replicant_frame(frame); - replicant_frame.top = replicant_frame.bottom - 7.0f; - replicant_frame.left = replicant_frame.right - 7.0f; - BDragger* dragger = new BDragger(replicant_frame, fCalcView, + BRect replicantFrame(frame); + replicantFrame.top = replicantFrame.bottom - 7.0f; + replicantFrame.left = replicantFrame.right - 7.0f; + BDragger* dragger = new BDragger(replicantFrame, fCalcView, B_FOLLOW_RIGHT | B_FOLLOW_BOTTOM); // attach views