E: Fix warning: variable 'cfd' set but not used
authorChristopher Michael <cpmichael1@comcast.net>
Sun, 28 Oct 2012 10:33:48 +0000 (10:33 +0000)
committerChristopher Michael <cpmichael1@comcast.net>
Sun, 28 Oct 2012 10:33:48 +0000 (10:33 +0000)
Signed-off-by: Christopher Michael <cpmichael1@comcast.net>
SVN revision: 78584

src/modules/access/e_mod_config.c

index 587c5299352615c97e58a993d9230e1013bfc9d6..30976196c06806e8cf801ac3930df442b0787d24 100644 (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 */