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:
@@ -632,7 +632,7 @@ void APRView::LoadSettings(void)
|
|||||||
|
|
||||||
link.StartMessage(AS_GET_UI_COLORS);
|
link.StartMessage(AS_GET_UI_COLORS);
|
||||||
link.Flush();
|
link.Flush();
|
||||||
link.GetNextReply(&code);
|
link.GetNextMessage(code);
|
||||||
link.Read<ColorSet>(currentset);
|
link.Read<ColorSet>(currentset);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|||||||
@@ -40,7 +40,6 @@
|
|||||||
#include <MenuBar.h>
|
#include <MenuBar.h>
|
||||||
#include <MenuItem.h>
|
#include <MenuItem.h>
|
||||||
#include <StringView.h>
|
#include <StringView.h>
|
||||||
#include <FilePanel.h>
|
|
||||||
#include <Invoker.h>
|
#include <Invoker.h>
|
||||||
#include <ColorSet.h>
|
#include <ColorSet.h>
|
||||||
class ColorWell;
|
class ColorWell;
|
||||||
|
|||||||
@@ -400,7 +400,7 @@ void CurView::SetDefaults(void)
|
|||||||
|
|
||||||
link.StartMessage(AS_SET_SYSCURSOR_DEFAULTS);
|
link.StartMessage(AS_SET_SYSCURSOR_DEFAULTS);
|
||||||
link.Flush();
|
link.Flush();
|
||||||
link.GetNextReply(&code);
|
link.GetNextMessage(code);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -39,7 +39,6 @@
|
|||||||
#include <MenuBar.h>
|
#include <MenuBar.h>
|
||||||
#include <MenuItem.h>
|
#include <MenuItem.h>
|
||||||
#include <StringView.h>
|
#include <StringView.h>
|
||||||
#include <FilePanel.h>
|
|
||||||
#include <Invoker.h>
|
#include <Invoker.h>
|
||||||
#include <SysCursor.h>
|
#include <SysCursor.h>
|
||||||
#include <Bitmap.h>
|
#include <Bitmap.h>
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ Preference Appearance :
|
|||||||
ColorWell.cpp
|
ColorWell.cpp
|
||||||
ColorWhichItem.cpp
|
ColorWhichItem.cpp
|
||||||
CursorWhichItem.cpp
|
CursorWhichItem.cpp
|
||||||
: libbe.so libtracker.so libtranslation.so libappserver.so libopenbeos.so
|
: libopenbeos.so libbe.so libtranslation.so libappserver.so
|
||||||
: Appearance.rdef
|
: Appearance.rdef
|
||||||
;
|
;
|
||||||
|
|
||||||
|
|||||||
@@ -263,8 +263,8 @@ class PreviewDriver : public DisplayDriver
|
|||||||
virtual void Unlock();
|
virtual void Unlock();
|
||||||
|
|
||||||
// display mode access
|
// display mode access
|
||||||
virtual void SetMode(const display_mode &mode) {}
|
virtual status_t SetMode(const display_mode &mode) { return B_OK; }
|
||||||
virtual void GetMode(display_mode *mode) {}
|
virtual void GetMode(display_mode &mode) {}
|
||||||
const display_mode* DisplayMode()
|
const display_mode* DisplayMode()
|
||||||
{ return &fDisplayMode; }
|
{ return &fDisplayMode; }
|
||||||
|
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ cursor_which get_syscursor(void)
|
|||||||
BPortLink link(server);
|
BPortLink link(server);
|
||||||
|
|
||||||
link.StartMessage(AS_GET_SYSCURSOR);
|
link.StartMessage(AS_GET_SYSCURSOR);
|
||||||
link.GetNextReply(&code);
|
link.GetNextMessage(code);
|
||||||
|
|
||||||
if(code==SERVER_TRUE)
|
if(code==SERVER_TRUE)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user