- Small style change.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28936 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
35336d367e
commit
b100149cb4
@ -36,7 +36,7 @@ CDDBDaemon::CDDBDaemon()
|
||||
continue;
|
||||
|
||||
uint32 cddbId;
|
||||
if (CanLookup(volume.Device(), &cddbId, toc)) {
|
||||
if (_CanLookup(volume.Device(), &cddbId, toc)) {
|
||||
printf("CD can be looked up. CDDB id = %lu.\n", cddbId);
|
||||
// TODO(bga): Implement and enable CDDB database lookup.
|
||||
}
|
||||
@ -68,7 +68,7 @@ CDDBDaemon::MessageReceived(BMessage* message)
|
||||
break;
|
||||
|
||||
uint32 cddbId;
|
||||
if (CanLookup(device, &cddbId, toc)) {
|
||||
if (_CanLookup(device, &cddbId, toc)) {
|
||||
printf("CD can be looked up. CDDB id = %lu.\n",
|
||||
cddbId);
|
||||
// TODO(bga): Implement and enable CDDB
|
||||
@ -86,7 +86,7 @@ CDDBDaemon::MessageReceived(BMessage* message)
|
||||
|
||||
|
||||
bool
|
||||
CDDBDaemon::CanLookup(const dev_t device, uint32* cddbId,
|
||||
CDDBDaemon::_CanLookup(const dev_t device, uint32* cddbId,
|
||||
scsi_toc_toc* toc) const
|
||||
{
|
||||
if (cddbId == NULL || toc == NULL)
|
||||
|
@ -23,7 +23,7 @@ public:
|
||||
virtual void MessageReceived(BMessage* message);
|
||||
|
||||
private:
|
||||
bool CanLookup(const dev_t device, uint32* cddbId,
|
||||
bool _CanLookup(const dev_t device, uint32* cddbId,
|
||||
scsi_toc_toc* toc) const;
|
||||
|
||||
BVolumeRoster* fVolumeRoster;
|
||||
|
Loading…
Reference in New Issue
Block a user