That's normal after deleting the QSplashScreen base you should not do any stuff with signal or metadata.

Why don't do that :

Qt Code:
  1. //slots
  2. void QSS::fechar()
  3. {
  4. hide();
  5. emit fechou();
  6. close();
  7. }
To copy to clipboard, switch view to plain text mode 
and add a Qt::WA_DeleteOnClose flag on your splashscreen (or use deleteLater() ).

And please, use CODE TAG!!