I keep receiving this warning QObject::startTimer: timers cannot be started from another thread
and all I do is that I have a main GUI class that at some point starts a thread and this thread has no timer in it. On the other hand, I created a timer in the main GUI class where every 1 second calls a function in the main class and consequently calls another one in the helping thread.
The code in the main class is
ImageThread *it = new ImageThread();
it->init(imageList, image, imageNames,imageItems,scene,item);
it->start();
even when I commented out the timer code in the main class, I still get the same warning !! Please help me out.