match BView::Archive() signature, avoids a warning with gcc4
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@18933 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -71,7 +71,7 @@ class TAlertView : public BView {
|
|||||||
~TAlertView();
|
~TAlertView();
|
||||||
|
|
||||||
static TAlertView* Instantiate(BMessage* archive);
|
static TAlertView* Instantiate(BMessage* archive);
|
||||||
status_t Archive(BMessage* archive, bool deep = true);
|
virtual status_t Archive(BMessage* archive, bool deep = true) const;
|
||||||
|
|
||||||
virtual void Draw(BRect updateRect);
|
virtual void Draw(BRect updateRect);
|
||||||
|
|
||||||
@@ -681,7 +681,7 @@ TAlertView::Instantiate(BMessage* archive)
|
|||||||
|
|
||||||
|
|
||||||
status_t
|
status_t
|
||||||
TAlertView::Archive(BMessage* archive, bool deep)
|
TAlertView::Archive(BMessage* archive, bool deep) const
|
||||||
{
|
{
|
||||||
return BView::Archive(archive, deep);
|
return BView::Archive(archive, deep);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user