aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ephy-filesystem-autocompletion.c
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@it.gnome.org>2003-01-12 21:18:44 +0800
committerMarco Pesenti Gritti <mpeseng@src.gnome.org>2003-01-12 21:18:44 +0800
commit54df3f0ea343005402ab02ab90b137783d0bdd72 (patch)
treefdbddbbac7f6baca4e48abc6015a2d3b01e4dcb7 /lib/ephy-filesystem-autocompletion.c
parentec474aa2c989710ab13aafaca9405f767f759b63 (diff)
downloadgsoc2013-epiphany-54df3f0ea343005402ab02ab90b137783d0bdd72.tar
gsoc2013-epiphany-54df3f0ea343005402ab02ab90b137783d0bdd72.tar.gz
gsoc2013-epiphany-54df3f0ea343005402ab02ab90b137783d0bdd72.tar.bz2
gsoc2013-epiphany-54df3f0ea343005402ab02ab90b137783d0bdd72.tar.lz
gsoc2013-epiphany-54df3f0ea343005402ab02ab90b137783d0bdd72.tar.xz
gsoc2013-epiphany-54df3f0ea343005402ab02ab90b137783d0bdd72.tar.zst
gsoc2013-epiphany-54df3f0ea343005402ab02ab90b137783d0bdd72.zip
2003-01-12 Marco Pesenti Gritti <marco@it.gnome.org>
* 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):
Diffstat (limited to 'lib/ephy-filesystem-autocompletion.c')
-rw-r--r--lib/ephy-filesystem-autocompletion.c20
1 files changed, 8 insertions, 12 deletions
diff --git a/lib/ephy-filesystem-autocompletion.c b/lib/ephy-filesystem-autocompletion.c
index 8b1cb84fb..b1f340a4c 100644
--- a/lib/ephy-filesystem-autocompletion.c
+++ b/lib/ephy-filesystem-autocompletion.c
@@ -23,15 +23,11 @@
#include "ephy-autocompletion-source.h"
#include "ephy-filesystem-autocompletion.h"
#include "ephy-gobject-misc.h"
-#include <string.h>
+#include "ephy-debug.h"
+#include <string.h>
#include <libgnomevfs/gnome-vfs-async-ops.h>
-#define NOT_IMPLEMENTED g_warning ("not implemented: " G_STRLOC);
-
-//#define DEBUG_MSG(x) g_print x
-#define DEBUG_MSG(x)
-
/**
* Private data
*/
@@ -104,7 +100,7 @@ ephy_filesystem_autocompletion_finalize_impl (GObject *o)
EphyFilesystemAutocompletion *as = GUL_FILESYSTEM_AUTOCOMPLETION (o);
EphyFilesystemAutocompletionPrivate *p = as->priv;
- DEBUG_MSG (("in ephy_filesystem_autocompletion_finalize_impl\n"));
+ LOG ("Finalize")
g_free (p->basic_key);
g_free (p->basic_key_dir);
@@ -193,7 +189,7 @@ gfa_load_directory_cb (GnomeVFSAsyncHandle *handle,
g_return_if_fail (p->load_handle == handle);
- DEBUG_MSG (("gfa_load_directory_cb, entries_read == %d\n", entries_read));
+ LOG ("entries_read == %d", entries_read)
if (entries_read <= 0)
{
@@ -221,7 +217,7 @@ gfa_load_directory_cb (GnomeVFSAsyncHandle *handle,
gchar *f = g_strconcat (cd, i->name, NULL);
p->files = g_slist_prepend (p->files, f);
- DEBUG_MSG (("+ %s\n", f));
+ LOG ("+ %s", f)
}
}
@@ -262,14 +258,14 @@ ephy_filesystem_autocompletion_set_current_dir (EphyFilesystemAutocompletion *fa
if (!cd_uri)
{
- DEBUG_MSG (("Can't load dir %s\n", d));
+ LOG ("Can't load dir %s", d)
return;
}
g_free (p->current_dir);
p->current_dir = gnome_vfs_uri_to_string (cd_uri, GNOME_VFS_URI_HIDE_NONE);
- DEBUG_MSG (("Loading dir: %s\n", p->current_dir));
+ LOG ("Loading dir: %s", p->current_dir)
gnome_vfs_async_load_directory_uri (&p->load_handle,
cd_uri,
@@ -336,7 +332,7 @@ ephy_filesystem_autocompletion_set_base_dir (EphyFilesystemAutocompletion *fa, c
if (p->base_dir_uri)
{
gchar *t = gnome_vfs_uri_to_string (p->base_dir_uri, GNOME_VFS_URI_HIDE_NONE);
- DEBUG_MSG (("base_dir: %s\n", t));
+ LOG ("base_dir: %s", t)
g_free (t);
}
}