Hi
I try to make a component, that shows a progressbar. It should work at the same time as my program makes the calculations (for a Mandelbrot-set) so it should be a thread.
My class-definition:
class ProgressBarComponent : public Component,
public Thread
...
But I get a compiler error:
error C2385: Mehrdeutiger Zugriff von “new”.
könnte “new” in Basis “juce::Component” sein
oder könnte “new” in Basis “juce::Thread” sein
Means something as:
ambiguous access of “new”. Could be “new” in "juce::Component"
or could be “new” in “juce::Thread”
What am I doing wrong?
Thanks LukeS