diff options
author | Marco Pesenti Gritti <marco@it.gnome.org> | 2003-01-12 09:24:41 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-01-12 09:24:41 +0800 |
commit | dcccb22acc252879837bb08a7f6eaaea91005860 (patch) | |
tree | 82895a801f6dfbb70ecbc07adfdce0327911f226 /src/ephy-shell.c | |
parent | 594097cc0181cfea7e8205448a7b6e315e311a36 (diff) | |
download | gsoc2013-epiphany-dcccb22acc252879837bb08a7f6eaaea91005860.tar gsoc2013-epiphany-dcccb22acc252879837bb08a7f6eaaea91005860.tar.gz gsoc2013-epiphany-dcccb22acc252879837bb08a7f6eaaea91005860.tar.bz2 gsoc2013-epiphany-dcccb22acc252879837bb08a7f6eaaea91005860.tar.lz gsoc2013-epiphany-dcccb22acc252879837bb08a7f6eaaea91005860.tar.xz gsoc2013-epiphany-dcccb22acc252879837bb08a7f6eaaea91005860.tar.zst gsoc2013-epiphany-dcccb22acc252879837bb08a7f6eaaea91005860.zip |
Move root nodes ids to ephy-types. Simple logging facility:
2003-01-12 Marco Pesenti Gritti <marco@it.gnome.org>
* configure.in:
* embed/ephy-favicon-cache.c: (ephy_favicon_cache_download):
* embed/ephy-history.c:
* lib/Makefile.am:
* lib/ephy-types.h:
* src/bookmarks/ephy-bookmarks.c:
* src/ephy-shell.c: (ephy_shell_init):
Move root nodes ids to ephy-types.
Simple logging facility:
EPHY_DEBUG_MODULES= all | filename
will enable it.
Need to provide a way to disable it and to get rid
of the old per file crap.
Diffstat (limited to 'src/ephy-shell.c')
-rw-r--r-- | src/ephy-shell.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ephy-shell.c b/src/ephy-shell.c index 2f2c207e6..e10af0ee2 100644 --- a/src/ephy-shell.c +++ b/src/ephy-shell.c @@ -27,6 +27,7 @@ #include "ephy-file-helpers.h" #include "ephy-thread-helpers.h" #include "ephy-bookmarks-import.h" +#include "ephy-debug.h" #include <string.h> #include <libgnomeui/gnome-client.h> @@ -192,6 +193,7 @@ ephy_shell_init (EphyShell *gs) g_object_add_weak_pointer (G_OBJECT(ephy_shell), (gpointer *)&ephy_shell); + ephy_debug_init (); ephy_thread_helpers_init (); ephy_node_system_init (); ephy_file_helpers_init (); |