From b07ce77575b6983d3b4591d0495f9cc6248e797f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Tue, 3 May 2005 00:28:31 +0000 Subject: [PATCH] BDiskDeviceList now has a default value for the "useOwnLocker" argument - it defaults to using its own locker. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@12544 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/private/storage/DiskDeviceList.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/headers/private/storage/DiskDeviceList.h b/headers/private/storage/DiskDeviceList.h index d1a7476baf..3fb3a516ca 100644 --- a/headers/private/storage/DiskDeviceList.h +++ b/headers/private/storage/DiskDeviceList.h @@ -1,15 +1,16 @@ //---------------------------------------------------------------------- -// This software is part of the OpenBeOS distribution and is covered -// by the OpenBeOS license. +// This software is part of the Haiku distribution and is covered +// by the MIT license. //--------------------------------------------------------------------- - #ifndef _DISK_DEVICE_LIST_H #define _DISK_DEVICE_LIST_H + #include #include #include + class BDiskDevice; class BDiskDeviceRoster; class BPartition; @@ -17,7 +18,7 @@ class BSession; class BDiskDeviceList : public BHandler { public: - BDiskDeviceList(bool useOwnLocker); + BDiskDeviceList(bool useOwnLocker = true); virtual ~BDiskDeviceList(); virtual void MessageReceived(BMessage *message);