mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
*** empty log message ***
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@5119 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
790dce6c59
commit
80efaf5c27
18
ChangeLog
18
ChangeLog
@ -1,3 +1,7 @@
|
||||
2001-08-11 James LewisMoss <jimdres@mindspring.com>
|
||||
|
||||
* src/engine/md5.c: include string.h to get bcopy def.
|
||||
|
||||
2001-08-11 Christian Stimming <stimming@tuhh.de>
|
||||
|
||||
* src/FileDialog.c (show_book_error): fix message.
|
||||
@ -163,6 +167,14 @@
|
||||
|
||||
* doc/sgml/C/xacc-sxeditor.sgml: fix warning
|
||||
|
||||
2001-08-02 James LewisMoss <jimdres@mindspring.com>
|
||||
|
||||
* src/scm/prefs.scm (((current-value gnc:*debugging?*))): add
|
||||
devel mode setting.
|
||||
|
||||
* src/scm/command-line.scm (gnc:*arg-defs*): add devel mode
|
||||
command line option.
|
||||
|
||||
2001-08-02 Robert Graham Merkel <rgmerk@mira.net>
|
||||
|
||||
* src/engine/SchedXaction.c (xaccSchedXactionSetEndDate): Reject
|
||||
@ -196,6 +208,12 @@
|
||||
* src/scm/html-utilities.scm: Fixed bug with sub-balances in
|
||||
account tables with non-default account selection.
|
||||
|
||||
2001-07-30 James LewisMoss <jimdres@mindspring.com>
|
||||
|
||||
* src/engine/Query.c: move test code to a test-queries in test
|
||||
directory.
|
||||
|
||||
* src/engine/io-gncbin-r.c: remove #if 0'ed code.
|
||||
2001-07-30 Joshua Sled <jsled@asynchronous.org>
|
||||
|
||||
* src/gnome/glade/sched-xact.glade: Added seperate reminders
|
||||
|
@ -2752,43 +2752,3 @@ xaccQueryGetLatestDateFound(Query * q) {
|
||||
}
|
||||
return latest;
|
||||
}
|
||||
|
||||
#if 0
|
||||
int
|
||||
main(int argc, char ** argv) {
|
||||
Query * q = xaccMallocQuery();
|
||||
Query * q2 = xaccMallocQuery();
|
||||
Query * r;
|
||||
|
||||
printf("testing queries...\n");
|
||||
|
||||
xaccQueryAddMiscMatch(q, NULL, 1);
|
||||
xaccQueryAddMiscMatch(q, NULL, 2);
|
||||
xaccQueryAddMiscMatch(q, NULL, 3);
|
||||
print_query(q);
|
||||
|
||||
xaccQueryAddMiscMatch(q2, NULL, 4);
|
||||
xaccQueryAddMiscMatch(q2, NULL, 5);
|
||||
xaccQueryAddMiscMatch(q2, NULL, 6);
|
||||
print_query(q2);
|
||||
|
||||
printf("AND of two simple queries:\n");
|
||||
|
||||
r = xaccQueryMerge(q, q2, QUERY_AND);
|
||||
print_query(r);
|
||||
|
||||
printf("OR of two simple queries:\n");
|
||||
|
||||
r = xaccQueryMerge(q, q2, QUERY_OR);
|
||||
print_query(r);
|
||||
|
||||
printf("NAND of two simple queries:\n");
|
||||
r = xaccQueryMerge(q, q2, QUERY_NAND);
|
||||
print_query(r);
|
||||
|
||||
printf("XOR of two simple queries:\n");
|
||||
r = xaccQueryMerge(q, q2, QUERY_XOR);
|
||||
print_query(r);
|
||||
|
||||
}
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user