use g_strndup instead of strndup
[uzbl-mobile] / uzbl.h
diff --git a/uzbl.h b/uzbl.h
index e4a30a7..76d88b3 100644 (file)
--- a/uzbl.h
+++ b/uzbl.h
@@ -20,7 +20,7 @@ enum {
 };
 
 const struct {
-    gchar *symbol_name;
+    /*@null@*/ gchar *symbol_name;
     guint symbol_token;
 } symbols[] = {
     {"KEYCMD",               SYM_KEYCMD},
@@ -183,7 +183,6 @@ typedef struct {
     Info          info;
 
     Window        xwin;
-    GScanner      *scan;
 
     /* group bindings: key -> action */
     GHashTable* bindings;
@@ -302,6 +301,9 @@ void
 set_mode_indicator();
 
 void
+update_indicator();
+
+void
 set_insert_mode(gboolean mode);
 
 void
@@ -390,7 +392,7 @@ void
 exec_paramcmd(const Action* act, const guint i);
 
 void
-initialize ();
+initialize (int argc, char *argv[]);
 
 GtkWidget*
 create_browser ();