Ok thank you !

And I guess it is the same thing with:

go_get_something(); // returns true or false

Qt Code:
  1. ...
  2. if(go_get_something()){
  3.  
  4. do_the_next_thing();
  5.  
  6. }
  7. ...
To copy to clipboard, switch view to plain text mode 

First, it runs go_get_something() then, if it returns true, it runs do_the_next_thing ?