viking

webkit based web browser for Enlightenment
Log | Files | Refs | LICENSE

commit 2a379c6177220603187ce8c2acaa1d946d27d0cb
parent 3422f42fffd136ccfea3ab74c5f12d21be43d0b1
Author: Kyle Milz <kmilz@ucalgary.ca>
Date:   Fri, 19 Oct 2012 19:17:09 -0600

soup: not used anymore

Diffstat:
Msrc/buffer.c | 1-
Msrc/main.c | 1-
Msrc/utilities.c | 5++---
Msrc/viking.h | 1-
Msrc/window.c | 1-
5 files changed, 2 insertions(+), 7 deletions(-)

diff --git a/src/buffer.c b/src/buffer.c @@ -1,7 +1,6 @@ #include <Elementary.h> #include <EWebKit2.h> -#include <libsoup/soup.h> #include "viking_state.h" #include "viking.h" diff --git a/src/main.c b/src/main.c @@ -12,7 +12,6 @@ #include <Elementary.h> #include <EWebKit2.h> -#include <libsoup/soup.h> #include "viking_state.h" #include "viking.h" diff --git a/src/utilities.c b/src/utilities.c @@ -10,7 +10,6 @@ #include <Elementary.h> #include <EWebKit2.h> -#include <libsoup/soup.h> #include "viking_state.h" #include "viking.h" @@ -175,10 +174,10 @@ parse_colour(char *color) { } if (strlen (goodcolor) != 7) { - return FALSE; + return EINA_FALSE; } else { strncpy(color, goodcolor, 8); - return TRUE; + return EINA_TRUE; } } diff --git a/src/viking.h b/src/viking.h @@ -174,7 +174,6 @@ typedef struct Ecore_Timer *session_save_timer; Ecore_Timer *download_status_timer; - SoupSession *soup_session; Hist *history; Config *config; Session *session; diff --git a/src/window.c b/src/window.c @@ -1,7 +1,6 @@ #include <Elementary.h> #include <EWebKit2.h> -#include <libsoup/soup.h> #include "viking_state.h" #include "viking.h"