Fix parameter order to match C file (thanks for Erwin Rieger).

* src/engine/gw-engine-spec.scm:
	  Fix parameter order to match C file (thanks for Erwin Rieger).


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@10318 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Derek Atkins
2004-11-01 02:17:52 +00:00
parent 1a43c812b0
commit a6ee03383b
2 changed files with 7 additions and 4 deletions

View File

@@ -36,6 +36,9 @@
* src/report/stylesheets/stylesheet-easy.scm:
add "easy stylesheet" code.
* src/engine/gw-engine-spec.scm:
Fix parameter order to match C file (thanks for Erwin Rieger).
2004-10-30 Christian Stimming <stimming@tuhh.de>
* doc/README.HBCI: Updated HBCI readme.

View File

@@ -1910,13 +1910,13 @@ of having a parent transaction with which one is working...")
"xaccQueryAddDateMatch"
'((<gnc:Query*> q)
(<gw:bool> use-start)
(<gw:int> st-year)
(<gw:int> st-mon)
(<gw:int> st-day)
(<gw:int> st-mon)
(<gw:int> st-year)
(<gw:bool> use-end)
(<gw:int> end-year)
(<gw:int> end-mon)
(<gw:int> end-day)
(<gw:int> end-mon)
(<gw:int> end-year)
(<gnc:query-op> how))
"Match the transaction date.")