diff options
Diffstat (limited to 'visualization/qmpvisualization.cpp')
-rw-r--r-- | visualization/qmpvisualization.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/visualization/qmpvisualization.cpp b/visualization/qmpvisualization.cpp index 1e64b22..1a11334 100644 --- a/visualization/qmpvisualization.cpp +++ b/visualization/qmpvisualization.cpp @@ -238,13 +238,16 @@ void qmpVisualization::init() vi=new CDemoVisualization(this); h=new CMidiVisualHandler(this); closeh=new CloseHandler(this); - api->registerVisualizationIntf(vi); - api->registerEventReaderIntf(cb,NULL); - api->registerEventHandlerIntf(hcb,NULL); + hvif=api->registerVisualizationIntf(vi); + herif=api->registerEventReaderIntf(cb,NULL); + hehif=api->registerEventHandlerIntf(hcb,NULL); } void qmpVisualization::deinit() { close(); + api->unregisterVisualizationIntf(hvif); + api->unregisterEventReaderIntf(herif); + api->unregisterEventHandlerIntf(hehif); delete cb;delete hcb;delete vi; delete h;delete closeh; } |