e_x.c: In function `ecore_window_property_get':

e_x.c:1737: warning: `return' with no value, in function returning non-void
e_x.c:1781: warning: this function may return with or without a value
e_x.c: In function `ecore_dnd_selection_convert':
e_x.c:2081: warning: `return' with no value, in function returning non-void
e_x.c:2091: warning: this function may return with or without a value
e_x.c: In function `ecore_window_get_gravity':
e_x.c:2760: warning: `return' with no value, in function returning non-void
e_x.c:2763: warning: this function may return with or without a value
e_x.c: In function `ecore_window_get_border_width':
e_x.c:3181: warning: `return' with no value, in function returning non-void
e_x.c:3188: warning: this function may return with or without a value
e_x.c: In function `ecore_window_get_wm_size_hints':
e_x.c:3196: warning: `return' with no value, in function returning non-void
e_x.c:3200: warning: this function may return with or without a value
e_x.c: In function `ecore_window_is_visible':
e_x.c:3207: warning: `return' with no value, in function returning non-void
e_x.c:3217: warning: this function may return with or without a value
e_x.c: In function `ecore_window_is_normal':
e_x.c:3224: warning: `return' with no value, in function returning non-void
e_x.c:3234: warning: this function may return with or without a value
e_x.c: In function `ecore_window_is_manageable':
e_x.c:3241: warning: `return' with no value, in function returning non-void
e_x.c:3252: warning: this function may return with or without a value
e_x.c: In function `ecore_window_get_title':
e_x.c:3292: warning: `return' with no value, in function returning non-void
e_x.c:3319: warning: this function may return with or without a value
...

Fixed tens of cases where non-void functions returned nothing, plus
renamed "class" to "name_class" in Ecore.h. Thanks for the hint,
Olivier.


SVN revision: 5599
This commit is contained in:
cpk 2001-10-31 21:16:53 +00:00 committed by cpk
parent 5c9c1ce543
commit 5ae51093ea
2 changed files with 78 additions and 41 deletions

View File

@ -214,7 +214,7 @@ extern "C"
void ecore_window_set_name_class(Window win, char *name, void ecore_window_set_name_class(Window win, char *name,
char *); char *);
void ecore_window_get_name_class(Window win, char **name, void ecore_window_get_name_class(Window win, char **name,
char **class); char **name_class);
char *ecore_window_get_machine(Window win); char *ecore_window_get_machine(Window win);
char *ecore_window_get_command(Window win); char *ecore_window_get_command(Window win);
char *ecore_window_get_icon_name(Window win); char *ecore_window_get_icon_name(Window win);

View File

@ -91,7 +91,8 @@ ecore_del_child(Window win, Window child)
{ {
Ecore_XID *xid = NULL; Ecore_XID *xid = NULL;
if (!disp) return; if (!disp)
return;
if (XFindContext(disp, win, xid_context, (XPointer *) & xid) == XCNOENT) if (XFindContext(disp, win, xid_context, (XPointer *) & xid) == XCNOENT)
return; return;
if (xid) if (xid)
@ -119,7 +120,8 @@ ecore_add_child(Window win, Window child)
{ {
Ecore_XID *xid = NULL; Ecore_XID *xid = NULL;
if (!disp) return; if (!disp)
return;
if (XFindContext(disp, win, xid_context, (XPointer *) & xid) == XCNOENT) if (XFindContext(disp, win, xid_context, (XPointer *) & xid) == XCNOENT)
return; return;
if (xid) if (xid)
@ -146,7 +148,8 @@ ecore_raise_child(Window win, Window child)
{ {
Ecore_XID *xid = NULL; Ecore_XID *xid = NULL;
if (!disp) return; if (!disp)
return;
if (XFindContext(disp, win, xid_context, (XPointer *) & xid) == XCNOENT) if (XFindContext(disp, win, xid_context, (XPointer *) & xid) == XCNOENT)
return; return;
if (xid) if (xid)
@ -173,7 +176,8 @@ ecore_lower_child(Window win, Window child)
{ {
Ecore_XID *xid = NULL; Ecore_XID *xid = NULL;
if (!disp) return; if (!disp)
return;
if (XFindContext(disp, win, xid_context, (XPointer *) & xid) == XCNOENT) if (XFindContext(disp, win, xid_context, (XPointer *) & xid) == XCNOENT)
return; return;
if (xid) if (xid)
@ -227,7 +231,8 @@ ecore_validate_xid(Window win)
{ {
Ecore_XID *xid = NULL; Ecore_XID *xid = NULL;
if (!disp) return NULL; if (!disp)
return NULL;
if (XFindContext(disp, win, xid_context, (XPointer *) & xid) == XCNOENT) if (XFindContext(disp, win, xid_context, (XPointer *) & xid) == XCNOENT)
{ {
XWindowAttributes att; XWindowAttributes att;
@ -289,7 +294,8 @@ ecore_unvalidate_xid(Window win)
{ {
Ecore_XID *xid = NULL; Ecore_XID *xid = NULL;
if (!disp) return; if (!disp)
return;
if (XFindContext(disp, win, xid_context, (XPointer *) & xid) == XCNOENT) if (XFindContext(disp, win, xid_context, (XPointer *) & xid) == XCNOENT)
return; return;
if (xid) if (xid)
@ -308,14 +314,16 @@ ecore_unvalidate_xid(Window win)
void void
ecore_sync(void) ecore_sync(void)
{ {
if (!disp) return; if (!disp)
return;
XSync(disp, False); XSync(disp, False);
} }
void void
ecore_flush(void) ecore_flush(void)
{ {
if (!disp) return; if (!disp)
return;
XFlush(disp); XFlush(disp);
} }
@ -325,7 +333,8 @@ ecore_window_new(Window parent, int x, int y, int w, int h)
Window win; Window win;
XSetWindowAttributes attr; XSetWindowAttributes attr;
if (!disp) return 0; if (!disp)
return 0;
if (!parent) if (!parent)
parent = default_root; parent = default_root;
attr.backing_store = NotUseful; attr.backing_store = NotUseful;
@ -353,7 +362,8 @@ ecore_window_override_new(Window parent, int x, int y, int w, int h)
Window win; Window win;
XSetWindowAttributes attr; XSetWindowAttributes attr;
if (!disp) return 0; if (!disp)
return 0;
if (!parent) if (!parent)
parent = default_root; parent = default_root;
attr.backing_store = NotUseful; attr.backing_store = NotUseful;
@ -381,7 +391,8 @@ ecore_window_input_new(Window parent, int x, int y, int w, int h)
Window win; Window win;
XSetWindowAttributes attr; XSetWindowAttributes attr;
if (!disp) return 0; if (!disp)
return 0;
if (!parent) if (!parent)
parent = default_root; parent = default_root;
attr.override_redirect = True; attr.override_redirect = True;
@ -401,7 +412,8 @@ ecore_window_set_events_propagate(Window win, int propagate)
{ {
XSetWindowAttributes attr; XSetWindowAttributes attr;
if (!disp) return; if (!disp)
return;
if (!win) if (!win)
win = default_root; win = default_root;
if (!propagate) if (!propagate)
@ -416,7 +428,8 @@ ecore_window_show(Window win)
{ {
Ecore_XID *xid = NULL; Ecore_XID *xid = NULL;
if (!disp) return; if (!disp)
return;
xid = ecore_validate_xid(win); xid = ecore_validate_xid(win);
if (xid) if (xid)
{ {
@ -432,7 +445,8 @@ ecore_window_hide(Window win)
{ {
Ecore_XID *xid = NULL; Ecore_XID *xid = NULL;
if (!disp) return; if (!disp)
return;
xid = ecore_validate_xid(win); xid = ecore_validate_xid(win);
if (xid) if (xid)
{ {
@ -446,7 +460,8 @@ ecore_window_hide(Window win)
Pixmap Pixmap
ecore_pixmap_new(Window win, int w, int h, int dep) ecore_pixmap_new(Window win, int w, int h, int dep)
{ {
if (!disp) return 0; if (!disp)
return 0;
if (!win) if (!win)
win = default_win; win = default_win;
if (dep == 0) if (dep == 0)
@ -457,7 +472,8 @@ ecore_pixmap_new(Window win, int w, int h, int dep)
void void
ecore_pixmap_free(Pixmap pmap) ecore_pixmap_free(Pixmap pmap)
{ {
if (!disp) return; if (!disp)
return;
if (!pmap) if (!pmap)
return; return;
XFreePixmap(disp, pmap); XFreePixmap(disp, pmap);
@ -466,28 +482,32 @@ ecore_pixmap_free(Pixmap pmap)
void void
ecore_window_set_background_pixmap(Window win, Pixmap pmap) ecore_window_set_background_pixmap(Window win, Pixmap pmap)
{ {
if (!disp) return; if (!disp)
return;
XSetWindowBackgroundPixmap(disp, win, pmap); XSetWindowBackgroundPixmap(disp, win, pmap);
} }
void void
ecore_window_set_shape_mask(Window win, Pixmap mask) ecore_window_set_shape_mask(Window win, Pixmap mask)
{ {
if (!disp) return; if (!disp)
return;
XShapeCombineMask(disp, win, ShapeBounding, 0, 0, mask, ShapeSet); XShapeCombineMask(disp, win, ShapeBounding, 0, 0, mask, ShapeSet);
} }
void void
ecore_window_add_shape_mask(Window win, Pixmap mask) ecore_window_add_shape_mask(Window win, Pixmap mask)
{ {
if (!disp) return; if (!disp)
return;
XShapeCombineMask(disp, win, ShapeBounding, 0, 0, mask, ShapeUnion); XShapeCombineMask(disp, win, ShapeBounding, 0, 0, mask, ShapeUnion);
} }
void void
ecore_window_set_shape_window(Window win, Window src, int x, int y) ecore_window_set_shape_window(Window win, Window src, int x, int y)
{ {
if (!disp) return; if (!disp)
return;
XShapeCombineShape(disp, win, ShapeBounding, x, y, src, ShapeBounding, XShapeCombineShape(disp, win, ShapeBounding, x, y, src, ShapeBounding,
ShapeSet); ShapeSet);
} }
@ -495,7 +515,8 @@ ecore_window_set_shape_window(Window win, Window src, int x, int y)
void void
ecore_window_add_shape_window(Window win, Window src, int x, int y) ecore_window_add_shape_window(Window win, Window src, int x, int y)
{ {
if (!disp) return; if (!disp)
return;
XShapeCombineShape(disp, win, ShapeBounding, x, y, src, ShapeBounding, XShapeCombineShape(disp, win, ShapeBounding, x, y, src, ShapeBounding,
ShapeUnion); ShapeUnion);
} }
@ -505,7 +526,8 @@ ecore_window_set_shape_rectangle(Window win, int x, int y, int w, int h)
{ {
XRectangle rect; XRectangle rect;
if (!disp) return; if (!disp)
return;
rect.x = x; rect.x = x;
rect.y = y; rect.y = y;
rect.width = w; rect.width = w;
@ -519,7 +541,8 @@ ecore_window_add_shape_rectangle(Window win, int x, int y, int w, int h)
{ {
XRectangle rect; XRectangle rect;
if (!disp) return; if (!disp)
return;
rect.x = x; rect.x = x;
rect.y = y; rect.y = y;
rect.width = w; rect.width = w;
@ -531,7 +554,8 @@ ecore_window_add_shape_rectangle(Window win, int x, int y, int w, int h)
void void
ecore_window_set_shape_rectangles(Window win, XRectangle * rect, int num) ecore_window_set_shape_rectangles(Window win, XRectangle * rect, int num)
{ {
if (!disp) return; if (!disp)
return;
XShapeCombineRectangles(disp, win, ShapeBounding, 0, 0, rect, num, ShapeSet, XShapeCombineRectangles(disp, win, ShapeBounding, 0, 0, rect, num, ShapeSet,
Unsorted); Unsorted);
} }
@ -539,7 +563,8 @@ ecore_window_set_shape_rectangles(Window win, XRectangle * rect, int num)
void void
ecore_window_add_shape_rectangles(Window win, XRectangle * rect, int num) ecore_window_add_shape_rectangles(Window win, XRectangle * rect, int num)
{ {
if (!disp) return; if (!disp)
return;
XShapeCombineRectangles(disp, win, ShapeBounding, 0, 0, rect, num, ShapeUnion, XShapeCombineRectangles(disp, win, ShapeBounding, 0, 0, rect, num, ShapeUnion,
Unsorted); Unsorted);
} }
@ -549,7 +574,8 @@ ecore_window_clip_shape_by_rectangle(Window win, int x, int y, int w, int h)
{ {
XRectangle rect; XRectangle rect;
if (!disp) return; if (!disp)
return;
rect.x = x; rect.x = x;
rect.y = y; rect.y = y;
rect.width = w; rect.width = w;
@ -563,7 +589,8 @@ ecore_window_get_shape_rectangles(Window win, int *num)
{ {
int ord; int ord;
if (!disp) return NULL; if (!disp)
return NULL;
return XShapeGetRectangles(disp, win, ShapeBounding, num, &ord); return XShapeGetRectangles(disp, win, ShapeBounding, num, &ord);
} }
@ -1707,7 +1734,9 @@ ecore_window_property_get(Window win, Atom type, Atom format, int *size)
int format_ret; int format_ret;
void *data = NULL; void *data = NULL;
if (!disp) return; if (!disp)
return NULL;
retval = NULL; retval = NULL;
if (win == 0) if (win == 0)
win = default_root; win = default_root;
@ -2051,7 +2080,7 @@ ecore_dnd_selection_convert(Window win, Window req, Atom type)
static Atom atom_xdndselection = 0; static Atom atom_xdndselection = 0;
static Atom atom_jxselectionwindowproperty = 0; static Atom atom_jxselectionwindowproperty = 0;
if (!disp) return; if (!disp) return 0;
ECORE_ATOM(atom_xdndselection, "XdndSelection"); ECORE_ATOM(atom_xdndselection, "XdndSelection");
ECORE_ATOM(atom_jxselectionwindowproperty, "JXSelectionWindowProperty"); ECORE_ATOM(atom_jxselectionwindowproperty, "JXSelectionWindowProperty");
if (win == XGetSelectionOwner(disp, atom_xdndselection)) if (win == XGetSelectionOwner(disp, atom_xdndselection))
@ -2697,7 +2726,8 @@ ecore_grab_mouse(Window win, int confine, Cursor cursor)
{ {
int ret; int ret;
if (!disp) return; if (!disp)
return;
if (confine) if (confine)
ret = XGrabPointer(disp, win, False, ret = XGrabPointer(disp, win, False,
XEV_BUTTON | XEV_MOUSE_MOVE | XEV_IN_OUT, XEV_BUTTON | XEV_MOUSE_MOVE | XEV_IN_OUT,
@ -2713,7 +2743,7 @@ ecore_grab_mouse(Window win, int confine, Cursor cursor)
void void
ecore_ungrab_mouse(void) ecore_ungrab_mouse(void)
{ {
if (!disp) return; if (!disp) return;
XUngrabPointer(disp, CurrentTime); XUngrabPointer(disp, CurrentTime);
grab_pointer_win = 0; grab_pointer_win = 0;
} }
@ -2729,7 +2759,9 @@ ecore_window_get_gravity(Window win)
{ {
XWindowAttributes att; XWindowAttributes att;
if (!disp) return; if (!disp)
return 0;
XGetWindowAttributes(disp, win, &att); XGetWindowAttributes(disp, win, &att);
return att.win_gravity; return att.win_gravity;
} }
@ -2739,7 +2771,7 @@ ecore_window_gravity_reset(Window win)
{ {
Ecore_XID *xid = NULL; Ecore_XID *xid = NULL;
if (!disp) return; if (!disp) return;
xid = ecore_validate_xid(win); xid = ecore_validate_xid(win);
if (xid) if (xid)
{ {
@ -3150,12 +3182,14 @@ ecore_window_get_border_width(Window win)
{ {
Ecore_XID *xid = NULL; Ecore_XID *xid = NULL;
if (!disp) return; if (!disp) return 0;
xid = ecore_validate_xid(win); xid = ecore_validate_xid(win);
if (xid) if (xid)
{ {
return xid->bw; return xid->bw;
} }
return 0; return 0;
} }
@ -3165,7 +3199,8 @@ ecore_window_get_wm_size_hints(Window win, XSizeHints * hints, int *mask)
long sup_ret; long sup_ret;
Status ok; Status ok;
if (!disp) return; if (!disp) return 0;
ok = XGetWMNormalHints(disp, win, hints, &sup_ret); ok = XGetWMNormalHints(disp, win, hints, &sup_ret);
*mask = (int)sup_ret; *mask = (int)sup_ret;
return ok; return ok;
@ -3176,7 +3211,7 @@ ecore_window_is_visible(Window win)
{ {
XWindowAttributes att; XWindowAttributes att;
if (!disp) return; if (!disp) return 0;
if (win == 0) if (win == 0)
win = default_root; win = default_root;
if (XGetWindowAttributes(disp, win, &att) == True) if (XGetWindowAttributes(disp, win, &att) == True)
@ -3193,7 +3228,7 @@ ecore_window_is_normal(Window win)
{ {
XWindowAttributes att; XWindowAttributes att;
if (!disp) return; if (!disp) return 0;
if (win == 0) if (win == 0)
win = default_root; win = default_root;
if (XGetWindowAttributes(disp, win, &att) == True) if (XGetWindowAttributes(disp, win, &att) == True)
@ -3210,7 +3245,7 @@ ecore_window_is_manageable(Window win)
{ {
XWindowAttributes att; XWindowAttributes att;
if (!disp) return; if (!disp) return 0;
if (win == 0) if (win == 0)
win = default_root; win = default_root;
if (XGetWindowAttributes(disp, win, &att) == True) if (XGetWindowAttributes(disp, win, &att) == True)
@ -3248,7 +3283,8 @@ ecore_window_stack_below(Window win, Window below)
{ {
XWindowChanges xwc; XWindowChanges xwc;
if (!disp) return; if (!disp) return;
if (win == 0) if (win == 0)
win = default_root; win = default_root;
xwc.sibling = below; xwc.sibling = below;
@ -3261,7 +3297,8 @@ ecore_window_get_title(Window win)
{ {
XTextProperty xtp; XTextProperty xtp;
if (!disp) return; if (!disp) return 0;
if (win == 0) if (win == 0)
win = default_root; win = default_root;
if (XGetWMName(disp, win, &xtp)) if (XGetWMName(disp, win, &xtp))