]> granicus.if.org Git - graphviz/commitdiff
fix for bug #641
authorellson <devnull@localhost>
Tue, 1 Mar 2005 16:12:41 +0000 (16:12 +0000)
committerellson <devnull@localhost>
Tue, 1 Mar 2005 16:12:41 +0000 (16:12 +0000)
lib/gvc/gvc.h
lib/gvc/gvjobs.c

index 1654bd2f6c46110d669ca93048a7ca0c78a1da57..0802303b7a084a4076214c623850a50ae4f18f6b 100644 (file)
@@ -48,7 +48,7 @@ extern "C" {
 /* job */
 
     extern void gvrender_output_filename_job(GVC_t * gvc, char *name);
-    extern int gvrender_output_langname_job(GVC_t * gvc, char *name);
+    extern boolean gvrender_output_langname_job(GVC_t * gvc, char *name);
     extern gvrender_job_t *gvrender_first_job(GVC_t * gvc);
     extern gvrender_job_t *gvrender_next_job(GVC_t * gvc);
     extern void gvrender_delete_jobs(GVC_t * gvc);
index 504a637226cb27b26f5c8a577cb3dfb546b07935..20b8da15d3c0415b9e7708aed6ca5e45b0108b64 100644 (file)
@@ -67,7 +67,7 @@ void gvrender_output_filename_job(GVC_t * gvc, char *name)
 }
 
 /* -T switches */
-int gvrender_output_langname_job(GVC_t * gvc, char *name)
+boolean gvrender_output_langname_job(GVC_t * gvc, char *name)
 {
     if (!gvc->jobs) {
        output_langname_job = gvc->job = gvc->jobs =
@@ -85,8 +85,8 @@ int gvrender_output_langname_job(GVC_t * gvc, char *name)
     }
     output_langname_job->output_langname = name;
 
-    /* select it now to check that it exists */
-    return (gvrender_select(gvc, name));
+    /* load it now to check that it exists */
+    return ((boolean)gvplugin_load(gvc, API_render, name));
 }
 
 #if 0