SawfishWM / rep-gtk

GTK+2 binding to librep
GNU General Public License v2.0
11 stars 5 forks source link

Fix various functions #7

Closed kimheino closed 3 months ago

kimheino commented 3 months ago

GCC 14 will treat type errors like these as errors:

gtk-glue.c: In function 'Fgtk_window_get_position': gtk-glue.c:5321:38: error: passing argument 2 of 'gtk_window_get_position' makes pointer from integer without a cast 5321 | gtk_window_get_position (c_window, c_x, c_y);

Fix lot of these. See https://bugzilla.redhat.com/show_bug.cgi?id=2256944

Nanolx commented 3 months ago

Thanks!