From 54df3f0ea343005402ab02ab90b137783d0bdd72 Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Sun, 12 Jan 2003 13:18:44 +0000 Subject: 2003-01-12 Marco Pesenti Gritti * configure.in: * doc/debugging.txt: * embed/ephy-embed-utils.c: (ephy_embed_utils_build_charsets_submenu): * embed/ephy-favicon-cache.c: (ephy_favicon_cache_init): * embed/ephy-history.c: (ephy_history_save): * embed/mozilla/mozilla-embed.cpp: * lib/ephy-autocompletion.c: (ephy_autocompletion_reset), (ephy_autocompletion_get_common_prefix), (ephy_autocompletion_refine_matches), (ephy_autocompletion_update_matches_full), (ephy_autocompletion_sort_by_score), (ephy_autocompletion_data_changed_cb), (acma_grow): * lib/ephy-debug.c: (log_module), (ephy_debug_init), (ephy_profiler_new), (ephy_should_profile), (ephy_profiler_dump), (ephy_profiler_free), (ephy_profiler_start), (ephy_profiler_stop): * lib/ephy-debug.h: * lib/ephy-filesystem-autocompletion.c: (ephy_filesystem_autocompletion_finalize_impl), (gfa_load_directory_cb), (ephy_filesystem_autocompletion_set_current_dir), (ephy_filesystem_autocompletion_set_base_dir): * lib/ephy-start-here.c: * lib/widgets/ephy-autocompletion-window.c: (ephy_autocompletion_window_get_dimensions), (ephy_autocompletion_window_fill_store_chunk), (ephy_autocompletion_window_show), (ephy_autocompletion_window_key_press_cb): * lib/widgets/ephy-location-entry.c: (ephy_location_entry_finalize_impl), (ephy_location_entry_autocompletion_show_alternatives_to), (ephy_location_entry_autocompletion_to), (ephy_location_entry_activate_cb), (ephy_location_entry_autocompletion_sources_changed_cb), (ephy_location_entry_autocompletion_window_url_activated_cb), (ephy_location_entry_autocompletion_window_hidden_cb): * src/bookmarks/ephy-bookmarks-editor.c: * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_clean_empty_keywords), (ephy_bookmarks_save), (ephy_bookmarks_find_keyword), (diff_keywords): * src/bookmarks/ephy-keywords-entry.c: (try_to_expand_keyword): * src/bookmarks/ephy-new-bookmark.c: (ephy_new_bookmark_set_title): * src/ephy-favorites-menu.c: (ephy_favorites_menu_rebuild): * src/ephy-nautilus-view.c: (gnv_cmd_set_charset), (if): * src/ephy-navigation-button.c: (ephy_navigation_button_finalize_impl): * src/ephy-shell.c: (ephy_shell_finalize): * src/ephy-tab.c: (ephy_tab_embed_destroy_cb), (ephy_tab_finalize): --- lib/widgets/ephy-location-entry.c | 28 ++++++++++++---------------- 1 file changed, 12 insertions(+), 16 deletions(-) (limited to 'lib/widgets/ephy-location-entry.c') diff --git a/lib/widgets/ephy-location-entry.c b/lib/widgets/ephy-location-entry.c index b0669f89f..d2702c6b4 100644 --- a/lib/widgets/ephy-location-entry.c +++ b/lib/widgets/ephy-location-entry.c @@ -22,6 +22,7 @@ #include "ephy-gobject-misc.h" #include "eel-gconf-extensions.h" #include "ephy-prefs.h" +#include "ephy-debug.h" #include #include @@ -30,11 +31,6 @@ #include #include -//#define DEBUG_MSG(x) g_print x -#define DEBUG_MSG(x) - -#define NOT_IMPLEMENTED g_warning ("not implemented: " G_STRLOC); - /** * Private data */ @@ -156,7 +152,7 @@ ephy_location_entry_finalize_impl (GObject *o) g_object_unref (G_OBJECT (p->autocompletion_window)); } - DEBUG_MSG (("EphyLocationEntry finalized\n")); + LOG ("EphyLocationEntry finalized") g_free (p); G_OBJECT_CLASS (gtk_hbox_class)->finalize (o); @@ -238,7 +234,7 @@ ephy_location_entry_autocompletion_show_alternatives_to (EphyLocationEntry *w) if (p->autocompletion) { - DEBUG_MSG (("+ephy_location_entry_autocompletion_show_alternatives_to\n")); + LOG ("Show alternatives") ephy_location_entry_set_autocompletion_key (w); ephy_location_entry_autocompletion_show_alternatives (w); } @@ -285,7 +281,7 @@ ephy_location_entry_autocompletion_to (EphyLocationEntry *w) gchar *text; gchar *common_prefix; - DEBUG_MSG (("in ephy_location_entry_autocompletion_to\n")); + LOG ("Autocompletion to") ephy_location_entry_set_autocompletion_key (w); @@ -301,8 +297,8 @@ ephy_location_entry_autocompletion_to (EphyLocationEntry *w) || send != text_len) { /* the user is editing the entry, don't mess it */ - DEBUG_MSG (("The user seems editing the text: pos = %d, strlen (text) = %d, sstart = %d, send = %d\n", - pos, strlen (text), sstart, send)); + LOG ("The user seems editing the text: pos = %d, strlen (text) = %d, sstart = %d, send = %d", + pos, strlen (text), sstart, send) p->autocompletion_timeout = 0; return FALSE; } @@ -310,7 +306,7 @@ ephy_location_entry_autocompletion_to (EphyLocationEntry *w) common_prefix = ephy_autocompletion_get_common_prefix (p->autocompletion); - DEBUG_MSG (("common_prefix: %s\n", common_prefix)); + LOG ("common_prefix: %s", common_prefix) if (common_prefix && (!p->before_completion || p->before_completion[0] == '\0')) { @@ -503,7 +499,7 @@ ephy_location_entry_activate_cb (GtkEntry *entry, EphyLocationEntry *w) ephy_location_entry_autocompletion_hide_alternatives (w); - DEBUG_MSG (("In ephy_location_entry_activate_cb, activating %s\n", content)); + LOG ("In ephy_location_entry_activate_cb, activating %s", content) g_signal_emit (w, EphyLocationEntrySignals[ACTIVATED], 0, target, content); g_free (content); @@ -515,7 +511,7 @@ ephy_location_entry_autocompletion_sources_changed_cb (EphyAutocompletion *aw, { EphyLocationEntryPrivate *p = w->priv; - DEBUG_MSG (("in ephy_location_entry_autocompletion_sources_changed_cb\n")); + LOG ("in ephy_location_entry_autocompletion_sources_changed_cb") if (p->autocompletion_timeout == 0 && p->last_completion @@ -613,7 +609,7 @@ ephy_location_entry_autocompletion_window_url_activated_cb (EphyAutocompletionWi content = gtk_editable_get_chars (GTK_EDITABLE(w->priv->entry), 0, -1); - DEBUG_MSG (("In location_entry_autocompletion_window_url_activated_cb, going to %s\n", content)); + LOG ("In location_entry_autocompletion_window_url_activated_cb, going to %s", content); ephy_location_entry_autocompletion_hide_alternatives (w); @@ -625,11 +621,11 @@ ephy_location_entry_autocompletion_window_url_activated_cb (EphyAutocompletionWi static void ephy_location_entry_autocompletion_window_hidden_cb (EphyAutocompletionWindow *aw, - EphyLocationEntry *w) + EphyLocationEntry *w) { EphyLocationEntryPrivate *p = w->priv; - DEBUG_MSG (("In location_entry_autocompletion_window_hidden_cb\n")); + LOG ("In location_entry_autocompletion_window_hidden_cb"); p->autocompletion_window_visible = FALSE; -- cgit v1.2.3