Index: trunk/src_plugins/import_sch/import_sch.c =================================================================== --- trunk/src_plugins/import_sch/import_sch.c (revision 17468) +++ trunk/src_plugins/import_sch/import_sch.c (revision 17469) @@ -361,7 +361,7 @@ if (conf_import_sch.plugins.import_sch.verbose) pcb_message(PCB_MSG_DEBUG, "pcb_act_Import: about to run pcb_act_ExecuteFile, file = %s\n", tmpfile); - fgw_vcall(&pcb_fgw, &res, "ExecuteFile", FGW_STR, tmpfile, 0); + fgw_vcall(&pcb_fgw, &res, "executefile", FGW_STR, tmpfile, 0); for(i = 0; i < nsources; i++) free((char *) cmd[8 + i]); @@ -435,7 +435,7 @@ return 1; } - fgw_vcall(&pcb_fgw, &res, "ExecuteFile", FGW_STR, tmpfile, 0); + fgw_vcall(&pcb_fgw, &res, "executefile", FGW_STR, tmpfile, 0); free((char*)cmd[2]); free((char*)cmd[3]); Index: trunk/src_plugins/lib_gtk_hid/actions.c =================================================================== --- trunk/src_plugins/lib_gtk_hid/actions.c (revision 17468) +++ trunk/src_plugins/lib_gtk_hid/actions.c (revision 17469) @@ -475,7 +475,7 @@ static fgw_error_t pcb_act_EditLayerGroups(fgw_arg_t *res, int argc, fgw_arg_t *argv) { - return fgw_vcall(&pcb_fgw, res, "DoWindows", FGW_STR, "Preferences", FGW_STR, "1", FGW_STR, "User PoV/Layers", 0); + return fgw_vcall(&pcb_fgw, res, "dowindows", FGW_STR, "Preferences", FGW_STR, "1", FGW_STR, "User PoV/Layers", 0); } /* ------------------------------------------------------------ */