Hi,
i don’t know if anybody runs into the same problem with ofxGui and the OF 0.061 version:
I tried to compile CCV (which uses the ofxGui addon code) under OF 0.061 but my application always chrashes. After a long debugging session i found the problem that seems to break almost all code with ofxGui.
In the ofUtils class there is a change in the ofToDataPath method with some new added code in the if clause (
&& path.substr(1,1)
.
As most of the time you wanna create a Button with ofxGui you initialize it without a path to a Imagefile, but then you run into problems with the substr(1,1) . So you can’t call this function with an empty string! (I thing this should be changed )
Has nobody else the same problems?