This is an automated email from the git hooks/post-receive script. nomad pushed a commit to branch master in repository apps/xfdashboard.
commit ee0d7d43fe55d4a538f485b6805935eb5a615ec5 Author: Stephan Haller <[email protected]> Date: Fri Aug 26 12:41:20 2016 +0200 Remove parameter for target actor in signal handler to draw outline at XfdashboardBackground as the target is this actor ;) --- libxfdashboard/background.c | 2 +- libxfdashboard/background.h | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/libxfdashboard/background.c b/libxfdashboard/background.c index b982f46..535b3a2 100644 --- a/libxfdashboard/background.c +++ b/libxfdashboard/background.c @@ -127,7 +127,7 @@ static gboolean _xfdashboard_background_on_draw_outline(XfdashboardBackground *s klass=XFDASHBOARD_BACKGROUND_GET_CLASS(self); if(klass->draw_outline) { - handled=(klass->draw_outline)(self, inFlags, inTarget, inWidth, inHeight); + handled=(klass->draw_outline)(self, inFlags, inWidth, inHeight); } /* Return handled state. If it is TRUE the further processing of this signal diff --git a/libxfdashboard/background.h b/libxfdashboard/background.h index 7315b23..b6f305a 100644 --- a/libxfdashboard/background.h +++ b/libxfdashboard/background.h @@ -88,7 +88,6 @@ struct _XfdashboardBackgroundClass /* Virtual functions */ gboolean (*draw_outline)(XfdashboardBackground *self, ClutterEffectPaintFlags inFlags, - ClutterActor *inTarget, gfloat inWidth, gfloat inHeight); }; -- To stop receiving notification emails like this one, please contact the administrator of this repository. _______________________________________________ Xfce4-commits mailing list [email protected] https://mail.xfce.org/mailman/listinfo/xfce4-commits
