10-07-2015, 04:41 AM
Yes, the thread variables possibly is the reason.
QM thread variables behave like local static variables in C/C++:
int- cur_fontsize=14 ;;=14 is executed once
int- cur_fontsize; cur_fontsize=14 ;;use this
QM thread variables behave like local static variables in C/C++:
int- cur_fontsize=14 ;;=14 is executed once
int- cur_fontsize; cur_fontsize=14 ;;use this