From 5ec5b4f201808a5795040656baa285d996dafbfa Mon Sep 17 00:00:00 2001 From: "Bruno G. Albuquerque" Date: Thu, 21 Aug 2008 12:37:31 +0000 Subject: [PATCH] - As expected, style fixes. Thanks Axel. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27105 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/servers/cddb_daemon/cddb_daemon.cpp | 10 +++++----- src/servers/cddb_daemon/cddb_daemon.h | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/servers/cddb_daemon/cddb_daemon.cpp b/src/servers/cddb_daemon/cddb_daemon.cpp index 7ce6cb2800..5418b4aebb 100644 --- a/src/servers/cddb_daemon/cddb_daemon.cpp +++ b/src/servers/cddb_daemon/cddb_daemon.cpp @@ -20,12 +20,12 @@ static const char* kCddaFsName = "cdda"; CDDBDaemon::CDDBDaemon() : BApplication("application/x-vnd.Haiku-CDDBDaemon") - , _volumeRoster(new BVolumeRoster) + , fVolumeRoster(new BVolumeRoster) { - _volumeRoster->StartWatching(); + fVolumeRoster->StartWatching(); BVolume volume; - while (_volumeRoster->GetNextVolume(&volume) == B_OK) { + while (fVolumeRoster->GetNextVolume(&volume) == B_OK) { uint32 cddbId; if (CanLookup(volume.Device(), &cddbId)) { printf("CD can be looked up. CDDB id = %lu.\n", cddbId); @@ -37,8 +37,8 @@ CDDBDaemon::CDDBDaemon() CDDBDaemon::~CDDBDaemon() { - _volumeRoster->StopWatching(); - delete _volumeRoster; + fVolumeRoster->StopWatching(); + delete fVolumeRoster; } diff --git a/src/servers/cddb_daemon/cddb_daemon.h b/src/servers/cddb_daemon/cddb_daemon.h index 58284baab7..8dcb36da31 100644 --- a/src/servers/cddb_daemon/cddb_daemon.h +++ b/src/servers/cddb_daemon/cddb_daemon.h @@ -20,7 +20,7 @@ public: private: bool CanLookup(const dev_t device, uint32* cddbId) const; - BVolumeRoster* _volumeRoster; + BVolumeRoster* fVolumeRoster; }; #endif