* fCurrentWorkspace wasn't properly initialized.

* Removed AS_SET_SYSCURSOR_DEFAULTS handling for now.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@16235 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2006-02-05 15:58:29 +00:00
parent a5eeb74ac0
commit 47f1b81ce2

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2001-2005, Haiku. * Copyright 2001-2006, Haiku.
* Distributed under the terms of the MIT License. * Distributed under the terms of the MIT License.
* *
* Authors: * Authors:
@ -263,6 +263,7 @@ Desktop::Desktop(uid_t userID)
fSettings(new DesktopSettings::Private()), fSettings(new DesktopSettings::Private()),
fApplicationsLock("application list"), fApplicationsLock("application list"),
fShutdownSemaphore(-1), fShutdownSemaphore(-1),
fCurrentWorkspace(0),
fAllWindows(kAllWindowList), fAllWindows(kAllWindowList),
fSubsetWindows(kSubsetList), fSubsetWindows(kSubsetList),
fWorkspacesLayer(NULL), fWorkspacesLayer(NULL),
@ -481,12 +482,6 @@ Desktop::_DispatchMessage(int32 code, BPrivate::LinkReceiver &link)
break; break;
} }
case AS_SET_SYSCURSOR_DEFAULTS:
{
GetCursorManager().SetDefaults();
break;
}
case B_QUIT_REQUESTED: case B_QUIT_REQUESTED:
// We've been asked to quit, so (for now) broadcast to all // We've been asked to quit, so (for now) broadcast to all
// test apps to quit. This situation will occur only when the server // test apps to quit. This situation will occur only when the server