sorry, forgot to commit the move of the locking implementation

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@12093 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus
2005-03-28 13:43:39 +00:00
parent 181a984e2a
commit 197f82a8fe
3 changed files with 7 additions and 15 deletions
+2 -4
View File
@@ -303,8 +303,8 @@ class DisplayDriver {
// These two will rarely be implemented by subclasses,
// but it still needs to be possible
virtual bool Lock(bigtime_t timeout = B_INFINITE_TIMEOUT);
virtual void Unlock();
virtual bool Lock(bigtime_t timeout = B_INFINITE_TIMEOUT) = 0;
virtual void Unlock() = 0;
// display mode access
virtual void SetMode(const display_mode &mode);
@@ -358,8 +358,6 @@ class DisplayDriver {
virtual void ConstrainClippingRegion(BRegion *reg) = 0;
protected:
BLocker fLocker;
CursorHandler fCursorHandler;
display_mode fDisplayMode;