diff --git a/src/apps/drivesetup/MainWindow.cpp b/src/apps/drivesetup/MainWindow.cpp index 6ebb9ee72d..40cf025cf8 100644 --- a/src/apps/drivesetup/MainWindow.cpp +++ b/src/apps/drivesetup/MainWindow.cpp @@ -155,7 +155,8 @@ MainWindow::MainWindow(BRect frame) BMenuBar* menuBar = new BMenuBar(Bounds(), "root menu"); // create all the menu items - fFormatMI = new BMenuItem("Format (not implemented)", new BMessage(MSG_FORMAT)); + fFormatMI = new BMenuItem("Format (not implemented)", + new BMessage(MSG_FORMAT)); fEjectMI = new BMenuItem("Eject", new BMessage(MSG_EJECT), 'E'); fSurfaceTestMI = new BMenuItem("Surface Test (not implemented)", new BMessage(MSG_SURFACE_TEST)); diff --git a/src/apps/drivesetup/PartitionList.cpp b/src/apps/drivesetup/PartitionList.cpp index 08d8d10a83..3a38f54150 100644 --- a/src/apps/drivesetup/PartitionList.cpp +++ b/src/apps/drivesetup/PartitionList.cpp @@ -240,6 +240,9 @@ PartitionListRow::PartitionListRow(partition_id parentID, partition_id id, } +// #pragma mark - PartitionListView + + PartitionListView::PartitionListView(const BRect& frame, uint32 resizeMode) : Inherited(frame, "storagelist", resizeMode, 0, B_NO_BORDER, true) {