Dear all,
I am pretty much stucked over the following simple question:
void forceValueInput(){
if( !value_A ){
inputgui->show; // gui is subclassed QWidget
}
// Question:
// how to wait here for inputgui to close before next step if( !value_B ) is executed
//
if( !value_B ){
inputgui->show;
}
}
void forceValueInput(){
if( !value_A ){
inputgui->show; // gui is subclassed QWidget
}
// Question:
// how to wait here for inputgui to close before next step if( !value_B ) is executed
//
if( !value_B ){
inputgui->show;
}
}
To copy to clipboard, switch view to plain text mode
I'm sure there is a simple answer and I'm just the blind one. Every hint highly appreciated.
Cheers, Lars
Bookmarks