Andreas Köhler's patch to replace some deprecated glib functions.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@11995 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
David Hampton
2005-11-20 22:42:25 +00:00
parent 130255cc9a
commit 042f050b9b
15 changed files with 210 additions and 194 deletions
+1 -1
View File
@@ -331,7 +331,7 @@ func_op( const char *fname,
GString *realFnName;
realFnName = g_string_sized_new( strlen(fname) + 5 );
g_string_sprintf( realFnName, "gnc:%s", fname );
g_string_printf( realFnName, "gnc:%s", fname );
scmFn = gh_eval_str_with_standard_handler( realFnName->str );
g_string_free( realFnName, TRUE );
if ( ! SCM_PROCEDUREP( scmFn ) ) {