summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xine_sxfe_frontend.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xine_sxfe_frontend.c b/xine_sxfe_frontend.c
index 14d6eb34..de744cf0 100644
--- a/xine_sxfe_frontend.c
+++ b/xine_sxfe_frontend.c
@@ -4,7 +4,7 @@
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
- * $Id: xine_sxfe_frontend.c,v 1.118 2010-05-21 12:01:53 phintuka Exp $
+ * $Id: xine_sxfe_frontend.c,v 1.119 2010-05-21 12:16:25 phintuka Exp $
*
*/
@@ -1548,7 +1548,7 @@ static void XButtonEvent_handler(sxfe_t *this, XButtonEvent *bev)
/* Double-click toggles between fullscreen and windowed mode */
if(bev->time - this->prev_click_time < DOUBLECLICK_TIME) {
/* Toggle fullscreen */
- sxfe_toggle_fullscreen((fe_t*)this);
+ this->x.toggle_fullscreen_cb(&this->x);
this->prev_click_time = 0; /* don't react to third click ... */
} else {
this->prev_click_time = bev->time;