[broadway] Wire up the delete event

This commit is contained in:
Alexander Larsson
2011-04-06 22:13:18 +02:00
parent 06fc6e007e
commit 3b1fe05e78
4 changed files with 36 additions and 2 deletions

View File

@ -258,7 +258,10 @@ parse_input_message (BroadwayInput *input, const char *message)
msg.configure_notify.width = strtol (p, &p, 10);
p++; /* Skip , */
msg.configure_notify.height = strtol (p, &p, 10);
p++; /* Skip , */
break;
case 'W':
msg.delete_notify.id = strtol(p, &p, 10);
break;
default: