| 354 | } |
| 355 | |
| 356 | UIDiffView::~UIDiffView() { |
| 357 | if ( mEditor && mPlugin ) |
| 358 | mEditor->unregisterPlugin( mPlugin.get() ); |
| 359 | |
| 360 | if ( mLeftEditor && mLeftPlugin ) |
| 361 | mLeftEditor->unregisterPlugin( mLeftPlugin.get() ); |
| 362 | |
| 363 | if ( mRightEditor && mRightPlugin ) |
| 364 | mRightEditor->unregisterPlugin( mRightPlugin.get() ); |
| 365 | } |
| 366 | |
| 367 | Uint32 UIDiffView::getType() const { |
| 368 | return UI_TYPE_DIFF_VIEW; |
nothing calls this directly
no test coverage detected