- Small style change.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28936 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Bruno G. Albuquerque 2009-01-18 16:05:46 +00:00
parent 35336d367e
commit b100149cb4
2 changed files with 4 additions and 4 deletions

View File

@ -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)

View File

@ -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;