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) DebugReportGenerator::DebugReportGenerator(::Team* team)
: :
BLooper("DebugReportGenerator"), BLooper("DebugReportGenerator"),
BReferenceable(),
fTeam(team), fTeam(team),
fArchitecture(team->GetArchitecture()), fArchitecture(team->GetArchitecture()),
fTeamDataSem(-1) fTeamDataSem(-1)
@@ -7,7 +7,6 @@
#include <Looper.h> #include <Looper.h>
#include <Referenceable.h>
#include "Team.h" #include "Team.h"
@@ -19,9 +18,7 @@ class Team;
class Thread; class Thread;
class DebugReportGenerator : public BLooper, public BReferenceable, class DebugReportGenerator : public BLooper, public Team::Listener {
public Team::Listener
{
public: public:
DebugReportGenerator(::Team* team); DebugReportGenerator(::Team* team);
~DebugReportGenerator(); ~DebugReportGenerator();