Hello!

May I make a slot with a return value, like:

Qt Code:
  1. public slots:
  2. bool saveAs();
  3. ....
  4. connect(savePB, SIGNAL(clicked()), this, SLOT(saveAs());
To copy to clipboard, switch view to plain text mode 

Practically, it works, but is this documented in Qt or allowed?