mirror of
https://github.com/netsurf-browser/netsurf
synced 2025-01-03 09:44:24 +03:00
[project @ 2004-03-28 15:41:50 by bursa]
Disable some excess logging. svn path=/import/netsurf/; revision=688
This commit is contained in:
parent
4b6e8a9a27
commit
8052ed8c6c
@ -492,8 +492,7 @@ void content_remove_user(struct content *c,
|
|||||||
void content_broadcast(struct content *c, content_msg msg, char *error)
|
void content_broadcast(struct content *c, content_msg msg, char *error)
|
||||||
{
|
{
|
||||||
struct content_user *user, *next;
|
struct content_user *user, *next;
|
||||||
LOG(("content %s, message %i", c->url, msg));
|
c->lock++;
|
||||||
c->lock++;
|
|
||||||
for (user = c->user_list->next; user != 0; user = next) {
|
for (user = c->user_list->next; user != 0; user = next) {
|
||||||
next = user->next; /* user may be destroyed during callback */
|
next = user->next; /* user may be destroyed during callback */
|
||||||
if (user->callback != 0)
|
if (user->callback != 0)
|
||||||
|
@ -662,7 +662,6 @@ void html_object_callback(content_msg msg, struct content *object,
|
|||||||
assert(0);
|
assert(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
LOG(("%i active", c->active));
|
|
||||||
if (c->status == CONTENT_STATUS_READY && c->active == 0) {
|
if (c->status == CONTENT_STATUS_READY && c->active == 0) {
|
||||||
/* all objects have arrived */
|
/* all objects have arrived */
|
||||||
content_reformat(c, c->available_width, 0);
|
content_reformat(c, c->available_width, 0);
|
||||||
|
Loading…
Reference in New Issue
Block a user