comparison plugin/RealTimePluginInstance.cpp @ 117:c30728d5625c sv1-v0.9rc1

* Make vertical scale alignment modes work in note layer as well as time-value layer, and several significant fixes to it * Make it possible to draw notes properly on the note layer * Show units (and frequencies etc in note layer's case) in the time-value and note layer description boxes * Minor fix to item edit dialog layout * Some minor menu rearrangement * Comment out a lot of debug output * Add SV website and reference URLs to Help menu, and add code to (attempt to) open them in the user's preferred browser
author Chris Cannam
date Fri, 12 May 2006 14:40:43 +0000
parents d397ea0a79f5
children 3a6af0e5e2d1
comparison
equal deleted inserted replaced
116:a08718723b20 117:c30728d5625c
24 #include <iostream> 24 #include <iostream>
25 25
26 26
27 RealTimePluginInstance::~RealTimePluginInstance() 27 RealTimePluginInstance::~RealTimePluginInstance()
28 { 28 {
29 std::cerr << "RealTimePluginInstance::~RealTimePluginInstance" << std::endl; 29 // std::cerr << "RealTimePluginInstance::~RealTimePluginInstance" << std::endl;
30 30
31 if (m_factory) { 31 if (m_factory) {
32 std::cerr << "Asking factory to release " << m_identifier.toStdString() << std::endl; 32 // std::cerr << "Asking factory to release " << m_identifier.toStdString() << std::endl;
33 33
34 m_factory->releasePlugin(this, m_identifier); 34 m_factory->releasePlugin(this, m_identifier);
35 } 35 }
36 } 36 }
37 37