Merge branch 'mmu_man/haiku-fixes'

This commit is contained in:
Vincent Sanders 2014-01-01 19:12:20 +00:00
commit ad3f3590e4
6 changed files with 45 additions and 22 deletions

View File

@ -38,6 +38,7 @@
#include <Mime.h>
#include <Path.h>
#include <Roster.h>
#include <Screen.h>
#include <String.h>
extern "C" {
@ -453,7 +454,10 @@ set_colour_from_ui(struct nsoption_s *opts,
((c.green << 8) & 0x00ff00) |
((c.red) & 0x0000ff));
}
return def_colour;
opts[option].value.c = def_colour;
return NSERROR_OK;
}
/**
@ -557,6 +561,7 @@ int main(int argc, char** argv)
/** called when replicated from NSBaseView::Instantiate() */
int gui_init_replicant(int argc, char** argv)
{
nserror ret;
BPath options;
if (find_directory(B_USER_SETTINGS_DIRECTORY, &options, true) == B_OK) {
options.Append("x-vnd.NetSurf");
@ -569,8 +574,22 @@ int gui_init_replicant(int argc, char** argv)
*/
nslog_init(nslog_stream_configure, &argc, argv);
/* initialise netsurf */
netsurf_init(&argc, &argv, options.Path(), messages);
// FIXME: use options as readonly for replicants
/* user options setup */
ret = nsoption_init(set_defaults, &nsoptions, &nsoptions_default);
if (ret != NSERROR_OK) {
// FIXME: must not die when in replicant!
die("Options failed to initialise");
}
nsoption_read(options.Path(), NULL);
nsoption_commandline(&argc, argv, NULL);
/* common initialisation */
ret = netsurf_init(messages);
if (ret != NSERROR_OK) {
// FIXME: must not die when in replicant!
die("NetSurf failed to initialise");
}
gui_init(argc, argv);
gui_init2(argc, argv);
@ -593,7 +612,8 @@ void gui_init(int argc, char** argv)
}
// ui_color() gives hardcoded values before BApplication is created.
nsbeos_update_system_ui_colors();
//FIXME:
//nsbeos_update_system_ui_colors();
fetch_rsrc_register();

View File

@ -702,7 +702,8 @@ void nsbeos_scaffolding_dispatch_event(nsbeos_scaffolding *scaffold, BMessage *m
break;
}
case B_UI_SETTINGS_CHANGED:
nsbeos_update_system_ui_colors();
//FIXME:
//nsbeos_update_system_ui_colors();
nsbeos_scaffolding_update_colors(scaffold);
break;
case B_NETPOSITIVE_OPEN_URL:

View File

@ -650,7 +650,8 @@ void nsbeos_dispatch_event(BMessage *message)
case B_MOUSE_WHEEL_CHANGED:
break;
case B_UI_SETTINGS_CHANGED:
nsbeos_update_system_ui_colors();
//FIXME:
//nsbeos_update_system_ui_colors();
break;
case 'nsLO': // login
{

View File

@ -1637,8 +1637,6 @@ css_error node_is_link(void *pw, void *n, bool *match)
*/
css_error node_is_visited(void *pw, void *node, bool *match)
{
*match = false;
nscss_select_ctx *ctx = pw;
nsurl *url;
nserror error;
@ -1648,6 +1646,8 @@ css_error node_is_visited(void *pw, void *node, bool *match)
dom_node *n = node;
dom_string *s = NULL;
*match = false;
exc = dom_node_get_node_name(n, &s);
if ((exc != DOM_NO_ERR) || (s == NULL)) {
return CSS_NOMEM;

View File

@ -96,7 +96,7 @@ struct treeview_node {
struct treeview_node_entry {
treeview_node base;
struct treeview_field fields[];
struct treeview_field fields[FLEX_ARRAY_LEN_DECL];
}; /**< Entry class inherits node base class */
struct treeview_pos {

View File

@ -21,6 +21,7 @@
#include <stdlib.h>
#include "utils/bloom.h"
#include "utils/utils.h"
/**
* Hash a string, returning a 32bit value. The hash algorithm used is
@ -50,7 +51,7 @@ static inline uint32_t fnv(const char *datum, size_t len)
struct bloom_filter {
size_t size;
uint32_t items;
uint8_t filter[];
uint8_t filter[FLEX_ARRAY_LEN_DECL];
};
struct bloom_filter *bloom_create(size_t size)