Commit af2f52eb authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt: fix quitting deletion order

parent 2d4cdd7a
...@@ -554,12 +554,12 @@ static void *Thread( void *obj ) ...@@ -554,12 +554,12 @@ static void *Thread( void *obj )
else else
getSettings()->remove( "filedialog-path" ); getSettings()->remove( "filedialog-path" );
/* Delete the configuration. Application has to be deleted after that. */
delete p_intf->p_sys->mainSettings;
/* */ /* */
delete p_intf->p_sys->pl_model; delete p_intf->p_sys->pl_model;
/* Delete the configuration. Application has to be deleted after that. */
delete p_intf->p_sys->mainSettings;
/* Destroy the MainInputManager */ /* Destroy the MainInputManager */
MainInputManager::killInstance(); MainInputManager::killInstance();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment