Fixed the build -- updated the PortLink API to match Axel's changes
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@13026 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
36b83da43d
commit
e490eab9a0
@ -632,7 +632,7 @@ void APRView::LoadSettings(void)
|
||||
|
||||
link.StartMessage(AS_GET_UI_COLORS);
|
||||
link.Flush();
|
||||
link.GetNextReply(&code);
|
||||
link.GetNextMessage(code);
|
||||
link.Read<ColorSet>(currentset);
|
||||
}
|
||||
else
|
||||
|
@ -40,7 +40,6 @@
|
||||
#include <MenuBar.h>
|
||||
#include <MenuItem.h>
|
||||
#include <StringView.h>
|
||||
#include <FilePanel.h>
|
||||
#include <Invoker.h>
|
||||
#include <ColorSet.h>
|
||||
class ColorWell;
|
||||
|
@ -400,7 +400,7 @@ void CurView::SetDefaults(void)
|
||||
|
||||
link.StartMessage(AS_SET_SYSCURSOR_DEFAULTS);
|
||||
link.Flush();
|
||||
link.GetNextReply(&code);
|
||||
link.GetNextMessage(code);
|
||||
|
||||
}
|
||||
|
||||
|
@ -39,7 +39,6 @@
|
||||
#include <MenuBar.h>
|
||||
#include <MenuItem.h>
|
||||
#include <StringView.h>
|
||||
#include <FilePanel.h>
|
||||
#include <Invoker.h>
|
||||
#include <SysCursor.h>
|
||||
#include <Bitmap.h>
|
||||
|
@ -16,7 +16,7 @@ Preference Appearance :
|
||||
ColorWell.cpp
|
||||
ColorWhichItem.cpp
|
||||
CursorWhichItem.cpp
|
||||
: libbe.so libtracker.so libtranslation.so libappserver.so libopenbeos.so
|
||||
: libopenbeos.so libbe.so libtranslation.so libappserver.so
|
||||
: Appearance.rdef
|
||||
;
|
||||
|
||||
|
@ -263,8 +263,8 @@ class PreviewDriver : public DisplayDriver
|
||||
virtual void Unlock();
|
||||
|
||||
// display mode access
|
||||
virtual void SetMode(const display_mode &mode) {}
|
||||
virtual void GetMode(display_mode *mode) {}
|
||||
virtual status_t SetMode(const display_mode &mode) { return B_OK; }
|
||||
virtual void GetMode(display_mode &mode) {}
|
||||
const display_mode* DisplayMode()
|
||||
{ return &fDisplayMode; }
|
||||
|
||||
|
@ -42,7 +42,7 @@ cursor_which get_syscursor(void)
|
||||
BPortLink link(server);
|
||||
|
||||
link.StartMessage(AS_GET_SYSCURSOR);
|
||||
link.GetNextReply(&code);
|
||||
link.GetNextMessage(code);
|
||||
|
||||
if(code==SERVER_TRUE)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user