0

Is there any signal that fires , while the user terminating the app. I need to clear the data from database On terminating the App.

I hope that get a proper solution here,

Thanks

Sharath
  • 315
  • 1
  • 3
  • 13

1 Answers1

1

void QCoreApplication::aboutToQuit () is the signal you are looking for. Please see https://developer.blackberry.com/native/reference/cascades/qcoreapplication.html#aboutToQuit

okosenkov
  • 38
  • 3
  • can i use bool boo= QObject::connect(app, SIGNAL( manualExit() ), this, SLOT( onManualExit() )); but app is running in background after closing it.. – Sharath Oct 09 '13 at 11:17