More style cleanup.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30349 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -54,12 +54,15 @@ public:
|
||||
class DialogPane : public BView {
|
||||
// dialog with collapsible panes
|
||||
public:
|
||||
DialogPane(BRect mode1Frame, BRect mode2Frame, int32 initialMode,
|
||||
const char *name, uint32 followFlags = B_FOLLOW_LEFT | B_FOLLOW_TOP,
|
||||
uint32 flags = B_WILL_DRAW);
|
||||
DialogPane(BRect mode1Frame, BRect mode2Frame, BRect mode3Frame,
|
||||
DialogPane(BRect mode1Frame, BRect mode2Frame,
|
||||
int32 initialMode, const char* name,
|
||||
uint32 followFlags = B_FOLLOW_LEFT | B_FOLLOW_TOP,
|
||||
uint32 followFlags
|
||||
= B_FOLLOW_LEFT | B_FOLLOW_TOP,
|
||||
uint32 flags = B_WILL_DRAW);
|
||||
DialogPane(BRect mode1Frame, BRect mode2Frame,
|
||||
BRect mode3Frame, int32 initialMode,
|
||||
const char* name, uint32 followFlags
|
||||
= B_FOLLOW_LEFT | B_FOLLOW_TOP,
|
||||
uint32 flags = B_WILL_DRAW);
|
||||
|
||||
virtual ~DialogPane();
|
||||
@@ -81,7 +84,7 @@ protected:
|
||||
static BRect FrameForMode(int32, BRect, BRect, BRect);
|
||||
// called only by the constructor
|
||||
|
||||
virtual void MessageReceived(BMessage *);
|
||||
virtual void MessageReceived(BMessage* message);
|
||||
|
||||
private:
|
||||
int32 fMode;
|
||||
@@ -97,12 +100,14 @@ private:
|
||||
typedef BView _inherited;
|
||||
};
|
||||
|
||||
|
||||
inline int32
|
||||
DialogPane::Mode() const
|
||||
{
|
||||
return fMode;
|
||||
}
|
||||
|
||||
|
||||
class PaneSwitch : public BControl {
|
||||
public:
|
||||
PaneSwitch(BRect frame, const char* name,
|
||||
|
||||
Reference in New Issue
Block a user