| 1001 | } |
| 1002 | |
| 1003 | void OverlayController::setDebugState( int value, bool notify ) |
| 1004 | { |
| 1005 | settings::setSetting( settings::IntSetting::APPLICATION_debugState, value ); |
| 1006 | |
| 1007 | if ( notify ) |
| 1008 | { |
| 1009 | emit debugStateChanged( value ); |
| 1010 | } |
| 1011 | } |
| 1012 | |
| 1013 | void OverlayController::setPreviousShutdownSafe( bool value ) |
| 1014 | { |
nothing calls this directly
no test coverage detected