Don't test PrivateBrowsing and AddDesktopShortcut

This commit is contained in:
Christian Dywan 2011-01-16 14:04:11 +01:00
parent 650aa8c102
commit 03b146386e
3 changed files with 9 additions and 4 deletions

View file

@ -459,7 +459,7 @@ midori_history_set_app (MidoriHistory* history,
gtk_tree_store_clear (GTK_TREE_STORE (model)); gtk_tree_store_clear (GTK_TREE_STORE (model));
} }
katze_assign (history->app, app); katze_object_assign (history->app, app);
if (!app) if (!app)
return; return;
g_object_ref (app); g_object_ref (app);

View file

@ -39,6 +39,8 @@ browser_create (void)
if (g_strcmp0 (gtk_action_get_name (action), "WindowClose")) if (g_strcmp0 (gtk_action_get_name (action), "WindowClose"))
if (g_strcmp0 (gtk_action_get_name (action), "EncodingCustom")) if (g_strcmp0 (gtk_action_get_name (action), "EncodingCustom"))
if (g_strcmp0 (gtk_action_get_name (action), "AddSpeedDial")) if (g_strcmp0 (gtk_action_get_name (action), "AddSpeedDial"))
if (g_strcmp0 (gtk_action_get_name (action), "PrivateBrowsing"))
if (g_strcmp0 (gtk_action_get_name (action), "AddDesktopShortcut"))
gtk_action_activate (action); gtk_action_activate (action);
actions = g_list_next (actions); actions = g_list_next (actions);
} }

View file

@ -133,11 +133,14 @@ properties_object_get_set (GObject* object)
G_PARAM_SPEC_ENUM (pspec)->default_value, NULL); G_PARAM_SPEC_ENUM (pspec)->default_value, NULL);
for (k = enum_class->minimum; k < enum_class->maximum; k++) for (k = enum_class->minimum; k < enum_class->maximum; k++)
{ {
GEnumValue* enum_value = g_enum_get_value (enum_class, k); GEnumValue* enum_value;
GEnumValue* enum_value_;
enum_value = g_enum_get_value (enum_class, k);
if (!enum_value) if (!enum_value)
g_error ("%s.%s has no value %d", g_error ("%s.%s has no value %d",
G_OBJECT_TYPE_NAME (object), property, k); G_OBJECT_TYPE_NAME (object), property, k);
GEnumValue* enum_value_ = g_enum_get_value_by_name (enum_class, enum_value_ = g_enum_get_value_by_name (enum_class,
enum_value->value_name); enum_value->value_name);
if (!enum_value) if (!enum_value)
g_error ("%s.%s has no value '%s'", g_error ("%s.%s has no value '%s'",