From b196ee51ed8515cb2459f185e0c9bb9178ab8dc6 Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Sat, 25 Dec 2004 13:13:57 +0000 Subject: [PATCH] actually use time field SVN revision: 12583 --- legacy/ecore/src/lib/ecore_x/ecore_x_icccm.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/legacy/ecore/src/lib/ecore_x/ecore_x_icccm.c b/legacy/ecore/src/lib/ecore_x/ecore_x_icccm.c index 45fb1d0fe0..f0eac222fb 100644 --- a/legacy/ecore/src/lib/ecore_x/ecore_x_icccm.c +++ b/legacy/ecore/src/lib/ecore_x/ecore_x_icccm.c @@ -85,7 +85,7 @@ ecore_x_icccm_delete_window_send(Ecore_X_Window win, Ecore_X_Time t) { ecore_x_client_message32_send(win, ECORE_X_ATOM_WM_PROTOCOLS, ECORE_X_ATOM_WM_DELETE_WINDOW, - CurrentTime, 0, 0, 0); + t, 0, 0, 0); } void @@ -93,7 +93,7 @@ ecore_x_icccm_take_focus_send(Ecore_X_Window win, Ecore_X_Time t) { ecore_x_client_message32_send(win, ECORE_X_ATOM_WM_PROTOCOLS, ECORE_X_ATOM_WM_TAKE_FOCUS, - CurrentTime, 0, 0, 0); + t, 0, 0, 0); } void @@ -101,7 +101,7 @@ ecore_x_icccm_save_yourself_send(Ecore_X_Window win, Ecore_X_Time t) { ecore_x_client_message32_send(win, ECORE_X_ATOM_WM_PROTOCOLS, ECORE_X_ATOM_WM_SAVE_YOURSELF, - CurrentTime, 0, 0, 0); + t, 0, 0, 0); } void