summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-02-18 14:38:34 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-02-18 14:38:34 +0000
commitbadf00b47c6031ce0bed57f4a97074531042de6d (patch)
treeda0cffb98c99a8b600602948bdc58b15a80f420e
parent6bccb65227c7d34bed08aa09f7fb642afab25352 (diff)
downloadnetsurf-badf00b47c6031ce0bed57f4a97074531042de6d.tar.gz
netsurf-badf00b47c6031ce0bed57f4a97074531042de6d.tar.bz2
Squash warnings
svn path=/trunk/netsurf/; revision=6563
-rw-r--r--framebuffer/fb_image_data.c9
-rw-r--r--framebuffer/history.c1
2 files changed, 9 insertions, 1 deletions
diff --git a/framebuffer/fb_image_data.c b/framebuffer/fb_image_data.c
index 8c8fb727e..275104e81 100644
--- a/framebuffer/fb_image_data.c
+++ b/framebuffer/fb_image_data.c
@@ -23,6 +23,7 @@
struct bitmap pointer_image = {
12, 22,
+ (uint8_t *)
"33L\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0""33L\37733L\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0""33L\377\273\273\324\3773"
@@ -65,6 +66,7 @@ struct bitmap pointer_image = {
struct bitmap caret_image = {
7, 19,
+ (uint8_t *)
"33L\37733L\37733L\377\0\0\0\0""33L\37733L\37733L\37733L\377\273\273\324\377"
"\360\360\377\37733L\377\360\360\377\377\273\273\324\37733L\377\0\0\0\0""3"
"3L\377\273\273\324\377\360\360\377\377\273\273\324\37733L\377\0\0\0\0\0\0"
@@ -86,7 +88,8 @@ struct bitmap caret_image = {
};
struct bitmap hand_image = {
- 16, 22,
+ 16, 22,
+ (uint8_t *)
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0""33L\37733L\377\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0""33L\377\273\273\324\377\273\273\324\37733L\377\0\0\0\0\0\0\0\0"
@@ -148,6 +151,7 @@ struct bitmap hand_image = {
const fb_widget_image_t left_arrow = {
22, 25, 4,
+ (uint8_t *)
"\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377"
"\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377"
"\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
@@ -247,6 +251,7 @@ const fb_widget_image_t left_arrow = {
const fb_widget_image_t right_arrow = {
22, 25, 4,
+ (uint8_t *)
"\0\10\0""0\0\11\0\350\0\10\0\206\0\10\0\14\377\377\377\0\377\377\377\0\377"
"\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377"
"\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
@@ -346,6 +351,7 @@ const fb_widget_image_t right_arrow = {
const fb_widget_image_t reload = {
24, 25, 4,
+ (uint8_t *)
"\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377"
"\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\0\10\0"
"\36\0\10\0O\0\10\0H\0\10\0!\0\10\0\2\377\377\377\0\377\377\377\0\377\377"
@@ -449,6 +455,7 @@ const fb_widget_image_t reload = {
const fb_widget_image_t stop_image = {
25, 25, 4,
+ (uint8_t *)
"\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377"
"\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377"
"\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
diff --git a/framebuffer/history.c b/framebuffer/history.c
index f81a98c3e..b0cf20495 100644
--- a/framebuffer/history.c
+++ b/framebuffer/history.c
@@ -16,6 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+#include "content/urldb.h"
#include "desktop/browser.h"
void global_history_add(const char *url)