xembed: remove useless comments

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2008-06-30 20:15:03 +02:00
parent db49685413
commit fc000acc8e
2 changed files with 26 additions and 28 deletions

View File

@ -61,7 +61,6 @@ xembed_message_send(xcb_connection_t *connection, xcb_window_t towin,
{ {
xcb_client_message_event_t ev; xcb_client_message_event_t ev;
/** \todo use atom cache */
p_clear(&ev, 1); p_clear(&ev, 1);
ev.response_type = XCB_CLIENT_MESSAGE; ev.response_type = XCB_CLIENT_MESSAGE;
ev.window = towin; ev.window = towin;
@ -88,7 +87,6 @@ xembed_info_get(xcb_connection_t *connection, xcb_window_t win, xembed_info_t *i
uint32_t *data; uint32_t *data;
bool ret = false; bool ret = false;
/** \todo use atom cache */
prop_c = xcb_get_property_unchecked(connection, false, win, _XEMBED_INFO, prop_c = xcb_get_property_unchecked(connection, false, win, _XEMBED_INFO,
XCB_GET_PROPERTY_TYPE_ANY, 0L, 2); XCB_GET_PROPERTY_TYPE_ANY, 0L, 2);