From 09e85ed32907f1ab0dff5f8c23fa2c3d4dd5252c Mon Sep 17 00:00:00 2001 From: Linas Vepstas Date: Mon, 1 Mar 1999 04:48:33 +0000 Subject: [PATCH] enbable enable-debug to work git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@1671 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/gnome/top-level.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/gnome/top-level.c b/src/gnome/top-level.c index a60fb014f6..c76f8b0ae4 100644 --- a/src/gnome/top-level.c +++ b/src/gnome/top-level.c @@ -40,6 +40,8 @@ /** PROTOTYPES ******************************************************/ /** GLOBALS *********************************************************/ +/* This static indicates the debugging module that this .o belongs to. */ +static short module = MOD_GUI; GtkWidget *app; @@ -63,6 +65,7 @@ gnucash_lowlev_app_init() printf(" coresize = %d\n",_coresize()); DEBUG("Done initializing memory"); #endif + ENTER ("gnucash_lowlev_app_init"); printf ("\n\n"); printf ("This is a BETA development version. We think everything works \n"); @@ -94,9 +97,9 @@ gnucash_lowlev_app_init() st->font = f; } } - - } + + LEAVE ("gnucash_lowlev_app_init"); return 0; }