use hash_table_replace instead of g_hash_table_insert

2002-03-06  Havoc Pennington  <hp@redhat.com>

	* src/frames.c (meta_frames_manage_window): use hash_table_replace
	instead of g_hash_table_insert

	* src/main.c (main): only enable verbose/debug if you set
	METACITY_VERBOSE/METACITY_DEBUG

	* src/util.c (ensure_logfile): only use a log file if
	METACITY_USE_LOGFILE is set

	* src/display.c (meta_display_for_x_display): add warning if
	MetaDisplay isn't found

	* src/window.c (meta_window_free): add an assertion that we
	successfully cleared the grab window
This commit is contained in:
Havoc Pennington 2002-03-06 22:27:24 +00:00 committed by Havoc Pennington
parent d443d92446
commit 262e6fab27
6 changed files with 32 additions and 8 deletions

View File

@ -1,3 +1,20 @@
2002-03-06 Havoc Pennington <hp@redhat.com>
* src/frames.c (meta_frames_manage_window): use hash_table_replace
instead of g_hash_table_insert
* src/main.c (main): only enable verbose/debug if you set
METACITY_VERBOSE/METACITY_DEBUG
* src/util.c (ensure_logfile): only use a log file if
METACITY_USE_LOGFILE is set
* src/display.c (meta_display_for_x_display): add warning if
MetaDisplay isn't found
* src/window.c (meta_window_free): add an assertion that we
successfully cleared the grab window
2002-03-05 Havoc Pennington <hp@pobox.com>
Work on opaque animations more, still suck too much

View File

@ -651,6 +651,9 @@ meta_display_for_x_display (Display *xdisplay)
tmp = tmp->next;
}
meta_warning ("Could not find display for X display %p, probably going to crash\n",
xdisplay);
return NULL;
}

View File

@ -340,9 +340,9 @@ meta_frames_ensure_layout (MetaFrames *frames,
meta_pango_font_desc_get_text_height (font_desc,
gtk_widget_get_pango_context (widget));
g_hash_table_insert (frames->text_heights,
&size,
GINT_TO_POINTER (frame->text_height));
g_hash_table_replace (frames->text_heights,
&size,
GINT_TO_POINTER (frame->text_height));
}
if (pango_font_description_get_size (font_desc) !=
@ -434,7 +434,7 @@ meta_frames_manage_window (MetaFrames *frames,
meta_core_grab_buttons (gdk_display, frame->xwindow);
g_hash_table_insert (frames->frames, &frame->xwindow, frame);
g_hash_table_replace (frames->frames, &frame->xwindow, frame);
}
void

View File

@ -89,9 +89,11 @@ main (int argc, char **argv)
bindtextdomain (GETTEXT_PACKAGE, METACITY_LOCALEDIR);
bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
textdomain (GETTEXT_PACKAGE);
meta_set_verbose (TRUE);
meta_set_debugging (TRUE);
if (g_getenv ("METACITY_VERBOSE"))
meta_set_verbose (TRUE);
if (g_getenv ("METACITY_DEBUG"))
meta_set_debugging (TRUE);
meta_set_syncing (g_getenv ("METACITY_SYNC") != NULL);
/* Parse options lamely */

View File

@ -37,7 +37,7 @@ static FILE* logfile = NULL;
static void
ensure_logfile (void)
{
if (logfile == NULL)
if (logfile == NULL && g_getenv ("METACITY_USE_LOGFILE"))
{
char *filename = NULL;
char *tmpl;

View File

@ -736,6 +736,8 @@ meta_window_free (MetaWindow *window)
if (window->display->grab_window == window)
meta_display_end_grab_op (window->display,
meta_display_get_current_time (window->display));
g_assert (window->display->grab_window != window);
if (window->display->focus_window == window)
window->display->focus_window = NULL;