Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
in my function i'm constantly emit a signal, but i would like to only emit the signal after my slot function are finished, anyway to do that?
if (canEmit) { canEmit = false; emit mySignal(); } // Slot: void mySlot() { doSomething(); emit processingFinished(); } // The previous class, slot: void onProcessingFinished() { canEmit = true; }