formatting

SVN revision: 73261
This commit is contained in:
Mike Blumenkrantz 2012-07-04 09:15:08 +00:00
parent 4128a1345f
commit 86274c429b
2 changed files with 562 additions and 551 deletions

File diff suppressed because it is too large Load Diff

View File

@ -8,17 +8,17 @@ static E_Module *conf_module = NULL;
EAPI E_Module_Api e_modapi =
{
E_MODULE_API_VERSION,
"Settings - Edge Bindings"
"Settings - Edge Bindings"
};
EAPI void *
e_modapi_init(E_Module *m)
{
e_configure_registry_category_add("keyboard_and_mouse", 40, _("Input"),
e_configure_registry_category_add("keyboard_and_mouse", 40, _("Input"),
NULL, "preferences-behavior");
e_configure_registry_item_add("keyboard_and_mouse/edge_bindings", 10,
_("Edge Bindings"), NULL,
"preferences-desktop-edge-bindings",
e_configure_registry_item_add("keyboard_and_mouse/edge_bindings", 10,
_("Edge Bindings"), NULL,
"preferences-desktop-edge-bindings",
e_int_config_edgebindings);
conf_module = m;
e_module_delayed_set(m, 1);
@ -30,7 +30,7 @@ e_modapi_shutdown(E_Module *m __UNUSED__)
{
E_Config_Dialog *cfd;
while ((cfd = e_config_dialog_get("E", "keyboard_and_mouse/edge_bindings")))
while ((cfd = e_config_dialog_get("E", "keyboard_and_mouse/edge_bindings")))
e_object_del(E_OBJECT(cfd));
e_configure_registry_item_del("keyboard_and_mouse/edge_bindings");
e_configure_registry_category_del("keyboard_and_mouse");
@ -43,3 +43,4 @@ e_modapi_save(E_Module *m __UNUSED__)
{
return 1;
}