brainless
19-12-2007 15:43:21
I tried downloading the source today and got a weird error about QuickGUITree.cpp. Turns out there are 2 of those:
QuickGUITree.cpp and
QuickGuiTree.cpp
Of course, on Linux this will work fine, but on Windows this will break. Is there any chance you could remove on or the other (or rename) so that Windows users can download the source again too? Thanks.
zolt4n
19-12-2007 15:57:44
...
Strange becauseInever change the name of my file ...
Well it seems there are two QuickGUITree.cpp files,
QuickGUITree.cpp
and
QuickGuiTree.cpp
QuickGuiTree.cpp is the one that would compile if it was named QuickGUITree.cpp, QuickGUITree.cpp is just plain outdated.
Then you need an additional
#include "QuickGUIManager.h"
#include "QuickGUITree.h"
in the new corrected QuickGUITree.cpp, g++ doesn't take as kindly to forward declarations as visual studio does.
kungfoomasta
19-12-2007 17:34:53
Sorry about this. So should I delete QuickGUITree.cpp, and rename QuickGuiTree?
I'm at work right now, but this evening I'll get this working, and do a round of small fixes/additions.
twilight17
19-12-2007 17:52:48
Yeah, yesterday I tried to get QuickGUI from SVN... but it kept complaining about already having files.. I think there a couple duplicate items..
libolt
19-12-2007 17:53:13
I have made the necessary changes to make everything build in my checkout. Do you want me to go ahead and submit them to the SVN server?
Mike
kungfoomasta
19-12-2007 18:06:50
Do you want me to go ahead and submit them to the SVN server?
That'd be great! I've tightened up the amount of people that can commit, but those who are able to commit can do so at any time. If anything, I am the person most likely to commit code resulting in build errors.

(I only do this when I have a massive amount of new feature code that I don't want lost, which is becoming a rare occurence)
twilight17
19-12-2007 18:07:55
libolt
19-12-2007 18:19:34
Okay, I have gone ahead and committed revision 303 to SVN. I fixed the new line warning in QuickGUITree.h while I was at it.
I hope this works for everyone.
Mike