Skip to content
Snippets Groups Projects
Commit 57711c8b authored by Jonathan Wilkes's avatar Jonathan Wilkes
Browse files

Merge branch 'em-fixes'

parents 05ca3b97 51c24683
No related branches found
No related tags found
No related merge requests found
Pipeline #3880 failed
...@@ -529,9 +529,10 @@ void envgen_key(t_envgen *x, t_floatarg f) ...@@ -529,9 +529,10 @@ void envgen_key(t_envgen *x, t_floatarg f)
} }
} }
static int envgen_newclick(t_envgen *x, struct _glist *glist, static int envgen_newclick(t_gobj *z, struct _glist *glist,
int xpos, int ypos, int shift, int alt, int dbl, int doit) int xpos, int ypos, int shift, int alt, int dbl, int doit)
{ {
t_envgen *x = (t_envgen *)z;
/* check if user wants to resize */ /* check if user wants to resize */
float wxpos = text_xpix(&x->x_obj, glist); float wxpos = text_xpix(&x->x_obj, glist);
float wypos = (int) (text_ypix(&x->x_obj,glist) + x->w.height); float wypos = (int) (text_ypix(&x->x_obj,glist) + x->w.height);
......
...@@ -59,7 +59,7 @@ static int libdir_add_to_path(const char*dirbuf, t_canvas*canvas) { ...@@ -59,7 +59,7 @@ static int libdir_add_to_path(const char*dirbuf, t_canvas*canvas) {
return 0; return 0;
} }
static int libdir_loader_legacy(t_canvas *canvas, char *classname) static int libdir_loader_legacy(t_canvas *canvas, const char *classname, const char *path)
{ {
int fd = -1; int fd = -1;
char fullclassname[FILENAME_MAX], dirbuf[FILENAME_MAX]; char fullclassname[FILENAME_MAX], dirbuf[FILENAME_MAX];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment