| 1544 | } |
| 1545 | |
| 1546 | void DebuggerPlugin::onRegisterEditor( UICodeEditor* editor ) { |
| 1547 | editor->registerGutterSpace( this, PixelDensity::dpToPx( 8 ), 0 ); |
| 1548 | |
| 1549 | editor->addUnlockedCommands( DebuggerCommandList ); |
| 1550 | |
| 1551 | PluginBase::onRegisterEditor( editor ); |
| 1552 | } |
| 1553 | |
| 1554 | void DebuggerPlugin::onUnregisterEditor( UICodeEditor* editor ) { |
| 1555 | editor->removeUnlockedCommands( DebuggerCommandList ); |
nothing calls this directly
no test coverage detected