E: Fix warning: variable 'cfd' set but not used

Signed-off-by: Christopher Michael <cpmichael1@comcast.net>

SVN revision: 78584
This commit is contained in:
Christopher Michael 2012-10-28 10:33:48 +00:00
parent 8a7b893dce
commit 39e33051ef
1 changed files with 3 additions and 4 deletions

View File

@ -16,7 +16,6 @@ static int _basic_apply (E_Config_Dialog *cfd __UNUSED__, E_Config_Dial
void
_config_pager_module(void)
{
E_Config_Dialog *cfd;
E_Config_Dialog_View *v;
E_Container *con;
@ -31,9 +30,9 @@ _config_pager_module(void)
v->basic.apply_cfdata = _basic_apply;
con = e_container_current_get(e_manager_current_get());
cfd = e_config_dialog_new(con, _("Access Settings"), "E",
"_e_mod_access_config_dialog",
"preferences-desktop-access", 0, v, NULL);
e_config_dialog_new(con, _("Access Settings"), "E",
"_e_mod_access_config_dialog",
"preferences-desktop-access", 0, v, NULL);
}
/* local function prototypes */