Re: [sword-devel] Best way to work with Genbooks

2024-04-04 Thread David "Judah's Shadow" Blue
On Thursday, April 4, 2024 11:17:57 AM EDT you wrote: > Hi David, > > I don't know the classes you are using, but maybe you have to do > something like this: > > if(treeKey->firstChild()) { > do { > this->toc += treeKey->getText(); > //Add a space around th

[sword-devel] Looking to contribute

2024-04-04 Thread Scott Buchanan
Hello all! I've been using CrossWire's software for quite a while now, and being a programmer would love to contribute towards its development. In particular, I'd love to be able to contribute towards the C++ SWORD engine. I've come across the jira tracker online, is there anything in particular

Re: [sword-devel] Best way to work with Genbooks

2024-04-04 Thread David "Judah's Shadow" Blue
On Tuesday, March 5, 2024 2:05:39 PM EDT Troy A. Griffitts wrote: > Hi David, > > Traversing a tree without recursion usually required keeping a stack you can > push onto and pop when you hit a leaf. This is all handled for you in the > call stack when you use recursion. If you really do want to