Skip to content

Commit

Permalink
DebugReportGenerator shouldn't inherit from BReferenceable.
Browse files Browse the repository at this point in the history
  • Loading branch information
anevilyak committed Dec 6, 2012
1 parent 8326ad4 commit 95b3c61
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
2 changes: 0 additions & 2 deletions src/apps/debugger/controllers/DebugReportGenerator.cpp
Expand Up @@ -32,8 +32,6 @@
DebugReportGenerator::DebugReportGenerator(::Team* team)
:
BLooper("DebugReportGenerator"),
BReferenceable(),

fTeam(team),
fArchitecture(team->GetArchitecture()),
fTeamDataSem(-1)
Expand Down
5 changes: 1 addition & 4 deletions src/apps/debugger/controllers/DebugReportGenerator.h
Expand Up @@ -7,7 +7,6 @@


#include <Looper.h>
#include <Referenceable.h>

#include "Team.h"

Expand All @@ -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();
Expand Down

0 comments on commit 95b3c61

Please sign in to comment.