~ubuntu-branches/ubuntu/trusty/rgtk2/trusty

« back to all changes in this revision

Viewing changes to src/RGtk2/gdkClassImports.c

  • Committer: Bazaar Package Importer
  • Author(s): Dirk Eddelbuettel
  • Date: 2010-11-03 11:35:46 UTC
  • mfrom: (1.3.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20101103113546-a7fi7jdxdebp0tw1
Tags: 2.20.1-1
* New upstream release

* debian/control: Set (Build-)Depends: to current R version
* debian/control: Set Standards-Version: to current version 

Show diffs side-by-side

added added

removed removed

Lines of Context:
126
126
  return(fun(c, e));
127
127
128
128
 
 
129
#if GDK_CHECK_VERSION(2, 14, 0)
 
130
void
 
131
S_gdk_app_launch_context_class_init(GdkAppLaunchContextClass * c, SEXP e)
 
132
{
 
133
  static void (*fun)(GdkAppLaunchContextClass *, SEXP) = NULL;
 
134
  if(!fun) fun = ((void (*)(GdkAppLaunchContextClass *, SEXP))R_GetCCallable("RGtk2", "S_gdk_app_launch_context_class_init"));
 
135
  return(fun(c, e));
 
136
}
 
137
#endif 
 
138