| 3373 | } |
| 3374 | |
| 3375 | Float UICodeEditor::getGutterLocalStartOffset( UICodeEditorPlugin* plugin ) const { |
| 3376 | Float offset = 0; |
| 3377 | for ( const auto& space : mPluginGutterSpaces ) { |
| 3378 | if ( space.plugin == plugin ) |
| 3379 | return offset; |
| 3380 | offset += space.space; |
| 3381 | } |
| 3382 | return offset; |
| 3383 | } |
| 3384 | |
| 3385 | Float UICodeEditor::getGutterSpace( UICodeEditorPlugin* plugin ) const { |
| 3386 | for ( const auto& space : mPluginGutterSpaces ) { |
no outgoing calls
no test coverage detected