]> spindle.queued.net Git - midori/commitdiff
Define MidoriLoadStatus as alias to WebKitLoadStatus
authorChristian Dywan <christian@twotoasts.de>
Sun, 30 Oct 2011 13:29:04 +0000 (14:29 +0100)
committerChristian Dywan <christian@twotoasts.de>
Sun, 30 Oct 2011 13:29:04 +0000 (14:29 +0100)
midori/midori-view.c
midori/midori-view.h

index f9f50363151d949a237bb08262b46d31df092e92..ca0d611e5b202a936b6c0825b7a692c6782df318 100644 (file)
@@ -118,24 +118,6 @@ struct _MidoriViewClass
 
 G_DEFINE_TYPE (MidoriView, midori_view, GTK_TYPE_VBOX);
 
-GType
-midori_load_status_get_type (void)
-{
-    static GType type = 0;
-    static const GEnumValue values[] = {
-     { MIDORI_LOAD_PROVISIONAL, "MIDORI_LOAD_PROVISIONAL", "Load Provisional" },
-     { MIDORI_LOAD_COMMITTED, "MIDORI_LOAD_COMMITTED", "Load Committed" },
-     { MIDORI_LOAD_FINISHED, "MIDORI_LOAD_FINISHED", "Load Finished" },
-     { 0, NULL, NULL }
-    };
-
-    if (type)
-        return type;
-
-    type = g_enum_register_static ("MidoriLoadStatus", values);
-    return type;
-}
-
 GType
 midori_new_view_get_type (void)
 {
@@ -3373,7 +3355,8 @@ midori_view_set_settings (MidoriView*        view,
  * midori_view_load_status:
  * @web_view: a #MidoriView
  *
- * Determines the current loading status of a view.
+ * Determines the current loading status of a view. There is no
+ * error state, unlike webkit_web_view_get_load_status().
  *
  * Return value: the current #MidoriLoadStatus
  **/
index b0246e34ff196c4f91700a93b4e54da37106006b..bdf21885c0b6791c320f41bb15c4fbacd45728f8 100644 (file)
 
 G_BEGIN_DECLS
 
-typedef enum
-{
-    MIDORI_LOAD_PROVISIONAL,
-    MIDORI_LOAD_COMMITTED,
-    MIDORI_LOAD_FINISHED
-} MidoriLoadStatus;
-
-GType
-midori_load_status_get_type (void) G_GNUC_CONST;
-
-#define MIDORI_TYPE_LOAD_STATUS \
-    (midori_load_status_get_type ())
+#define MIDORI_LOAD_PROVISIONAL WEBKIT_LOAD_PROVISIONAL
+#define MIDORI_LOAD_COMMITTED WEBKIT_LOAD_COMMITTED
+#define MIDORI_LOAD_FINISHED WEBKIT_LOAD_FINISHED
+#define MidoriLoadStatus WebKitLoadStatus
+#define MIDORI_TYPE_LOAD_STATUS WEBKIT_TYPE_LOAD_STATUS
 
 typedef enum
 {