DebugReportGenerator shouldn't inherit from BReferenceable.

This commit is contained in:
Rene Gollent
2012-12-05 20:09:58 -05:00
parent 8326ad45bb
commit 95b3c61c4b
2 changed files with 1 additions and 6 deletions
@@ -32,8 +32,6 @@
DebugReportGenerator::DebugReportGenerator(::Team* team)
:
BLooper("DebugReportGenerator"),
BReferenceable(),
fTeam(team),
fArchitecture(team->GetArchitecture()),
fTeamDataSem(-1)
@@ -7,7 +7,6 @@
#include <Looper.h>
#include <Referenceable.h>
#include "Team.h"
@@ -19,9 +18,7 @@ class Team;
class Thread;
class DebugReportGenerator : public BLooper, public BReferenceable,
public Team::Listener
{
class DebugReportGenerator : public BLooper, public Team::Listener {
public:
DebugReportGenerator(::Team* team);
~DebugReportGenerator();