vfs: check userland buffers before reading them.
[haiku.git] / src / apps / bootmanager / UninstallPage.h
blobc1c3b9456c0902e6e61f159527abe3dc77b07dd9
1 /*
2 * Copyright 2008-2010, Haiku, Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * Michael Pfeiffer <laplace@users.sourceforge.net>
7 */
8 #ifndef UNINSTALL_PAGE_H
9 #define UNINSTALL_PAGE_H
12 #include "WizardPageView.h"
15 class BTextView;
18 class UninstallPage : public WizardPageView {
19 public:
20 UninstallPage(BMessage* settings, BRect frame,
21 const char* name);
22 virtual ~UninstallPage();
24 virtual void FrameResized(float width, float height);
26 private:
27 void _BuildUI();
28 void _Layout();
30 private:
31 BTextView* fDescription;
35 #endif // UNINSTALL_PAGE_H