Reverted visual bell patch, #99886

2002-12-19  Havoc Pennington  <hp@pobox.com>

	* Reverted visual bell patch, #99886
This commit is contained in:
Havoc Pennington
2002-12-19 20:20:59 +00:00
committed by Havoc Pennington
parent 91641c2cf3
commit 1ece207400
14 changed files with 10 additions and 249 deletions

View File

@ -21,7 +21,6 @@
#include <config.h>
#include "frame.h"
#include "bell.h"
#include "errors.h"
#include "keybindings.h"
@ -59,7 +58,6 @@ meta_window_ensure_frame (MetaWindow *window)
frame->current_cursor = 0;
frame->mapped = FALSE;
frame->is_flashing = FALSE;
attrs.event_mask = EVENT_MASK;
@ -161,7 +159,6 @@ meta_window_destroy_frame (MetaWindow *window)
frame = window->frame;
meta_bell_notify_frame_destroy (frame);
meta_ui_remove_frame (window->screen->ui, frame->xwindow);
/* Unparent the client window; it may be destroyed,
@ -258,9 +255,6 @@ meta_frame_get_flags (MetaFrame *frame)
if (frame->window->fullscreen)
flags |= META_FRAME_FULLSCREEN;
if (frame->is_flashing)
flags |= META_FRAME_IS_FLASHING;
return flags;
}