Why don't you just try doing it and see if it works...
From what event handlers do you throw exceptions? I am asking because notify() might not be the best place to catch exceptions. Better try with event():
Qt Code:
{ bool result = false; try { } catch( SomeException exception ) { .... } return result; }To copy to clipboard, switch view to plain text mode
Regards
Bookmarks