Remove unsused BLocker inheritance.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37855 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Clemens Zeidler 2010-08-03 01:03:50 +00:00
parent 4d1aa4a619
commit f629aeb0df
2 changed files with 7 additions and 5 deletions

View File

@ -113,9 +113,9 @@ DecorInfo::Instantiate(Desktop* desktop, DrawingEngine* engine, BRect rect,
DecorManager::DecorManager() DecorManager::DecorManager()
: BLocker("DecorManager"), :
fDecorList(0), fDecorList(0),
fCurrentDecor(NULL) fCurrentDecor(NULL)
{ {
// Start with the default decorator - index is always 0 // Start with the default decorator - index is always 0
DecorInfo *defaultDecor = new DecorInfo(-1, "Default", NULL); DecorInfo *defaultDecor = new DecorInfo(-1, "Default", NULL);

View File

@ -22,8 +22,10 @@ class DecorInfo;
class Desktop; class Desktop;
class DrawingEngine; class DrawingEngine;
class DecorManager : public BLocker {
public: class DecorManager
{
public:
DecorManager(); DecorManager();
~DecorManager(); ~DecorManager();
@ -46,7 +48,7 @@ class DecorManager : public BLocker {
// is in place // is in place
//status_t GetPreview(int32 index, ServerBitmap *bitmap); //status_t GetPreview(int32 index, ServerBitmap *bitmap);
private: private:
void _EmptyList(); void _EmptyList();
DecorInfo* _FindDecor(const char *name); DecorInfo* _FindDecor(const char *name);