[DEV] remove onObjectRemove

This commit is contained in:
Edouard DUPIN 2014-08-17 23:32:00 +02:00
parent d62f5fd5c6
commit f0e325a853
2 changed files with 0 additions and 10 deletions

View File

@ -54,15 +54,6 @@ appl::Windows::Windows() :
m_composer->registerOnEventNameWidget(this, "bt-play2", "pressed", g_eventPlay2);
}
void appl::Windows::onObjectRemove(ewol::Object * _removeObject) {
if (_removeObject == m_composer) {
m_composer = NULL;
markToRedraw();
return;
}
}
eaudiofx::Processing* process = NULL;
void appl::Windows::onReceiveMessage(const ewol::object::Message& _msg) {

View File

@ -19,7 +19,6 @@ namespace appl {
public:
Windows();
public: // herited functions
virtual void onObjectRemove(ewol::Object * _removeObject);
virtual void onReceiveMessage(const ewol::object::Message& _msg);
};
};