Sudoku: minor cleanup.
This commit is contained in:
@@ -1,12 +1,16 @@
|
||||
/*
|
||||
* Copyright 2007, Michael Pfeiffer, [email protected]. All rights reserved.
|
||||
* Distributed under the terms of the MIT License.
|
||||
* Copyright 2007, Michael Pfeiffer, [email protected].
|
||||
* All rights reserved. Distributed under the terms of the MIT License.
|
||||
*/
|
||||
|
||||
|
||||
#include "CenteredViewContainer.h"
|
||||
|
||||
CenteredViewContainer::CenteredViewContainer(BView *target, BRect frame, const char* name, uint32 resizingMode)
|
||||
: BView(frame, name, resizingMode, B_WILL_DRAW | B_FRAME_EVENTS)
|
||||
, fTarget(target)
|
||||
|
||||
CenteredViewContainer::CenteredViewContainer(BView* target, const char* name)
|
||||
:
|
||||
BView(name, B_WILL_DRAW | B_FRAME_EVENTS),
|
||||
fTarget(target)
|
||||
{
|
||||
SetViewColor(B_TRANSPARENT_COLOR);
|
||||
// to avoid flickering
|
||||
|
||||
Reference in New Issue
Block a user