git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@2312 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Linas Vepstas 2000-05-14 21:49:13 +00:00
parent b441b4e404
commit 627808a0e5
3 changed files with 9 additions and 2 deletions

View File

@ -1,6 +1,6 @@
/********************************************************************\
* Query.c : api for finding transactions *
* Copyright 2000 Bill Gribble <grib@billgribble.com> *
* Copyright (C) 2000 Bill Gribble <grib@billgribble.com> *
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License as *
@ -38,6 +38,11 @@
#include "Group.h"
#include "Query.h"
static short module = MOD_QUERY;
/********************************************************************
********************************************************************/
#if 0
static void
print_query(Query * q) {

View File

@ -62,6 +62,7 @@ int loglevel[MODULE_MAX] =
2, /* GTK_REG */
2, /* GUILE */
4, /* BACKEND */
2, /* QUERY */
};
/********************************************************************\

View File

@ -52,7 +52,8 @@
#define MOD_GTK_REG 8
#define MOD_GUILE 9
#define MOD_BACKEND 10
#define MODULE_MAX 11
#define MOD_QUERY 11
#define MODULE_MAX 12
extern int loglevel[MODULE_MAX];