@Pl45m4
C++ or static Qt linking/building?
I don't know what that mean ...
@SimonSchroeder
I'm not sure where you got the idea that specifically, static methods cannot be called by different threads.
Maybe I'm overthinking the fact that a static method will have all variable globals acces at the same time by multiple threads. Sins i have a real time programmation background, i'm overthinking everthing that touch shared ressources.
And if you need to access protected methods maybe they should have been public instead.
The method I want is public, but on an object i don't want to instanciate. And i maybe don't know how to call if it's instancied already. With Qt creator debugger i don't know where to search to find an existing instanciation of the object i need.
@SGaist
Out of curiosity, why do you need to reinstantiate the whole application ?
Because the method i need is in a object where the constructor instanciate tons of other things. The whole application is maybe an exaggeration, I admit, but the whole data management, definetly
--
I think it's a clear lack of experience on my part whit Qt, i say many thing that are maybe confusing experts with my approximate understanding of what i have on my hands and what i understand of Qt. I'm also really far to be an Expert on C++.
The fact is that my static thing "work" by compilation and simple test, but i don't know if it may cause issue later that i may not have knowed