Stubbed out WinBorder class
Uncommented code in other files dependent on WinBorder git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2703 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -43,12 +43,19 @@
|
||||
namespace desktop_private {
|
||||
int8 *dragmessage;
|
||||
int32 dragmessagesize;
|
||||
sem_id draglock,
|
||||
BLocker draglock,
|
||||
layerlock,
|
||||
workspacelock;
|
||||
BList *screenlist;
|
||||
}
|
||||
|
||||
void lock_layers(void) { desktop_private::layerlock.Lock(); }
|
||||
void unlock_layers(void) { desktop_private::layerlock.Unlock(); }
|
||||
void lock_dragdata(void) { desktop_private::draglock.Lock(); }
|
||||
void unlock_dragdata(void) { desktop_private::draglock.Unlock(); }
|
||||
void lock_workspaces(void) { desktop_private::workspacelock.Lock(); }
|
||||
void unlock_workspaces(void) { desktop_private::workspacelock.Unlock(); }
|
||||
|
||||
/*!
|
||||
\brief Initializes the desktop for use.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user