[DEBUG] correct build error

This commit is contained in:
Edouard DUPIN 2015-12-03 23:49:55 +01:00
parent a0266a4ffe
commit 93b93ed964

View File

@ -449,11 +449,11 @@ void esvg::Base::draw(esvg::Renderer& _myRenderer, mat2& _basicTrans, int32_t _l
const std::string& getId() const { const std::string& esvg::Base::getId() const {
return m_id; return m_id;
} }
void setId(const std::string& _newId) { void esvg::Base::setId(const std::string& _newId) {
// TODO : Check if it is UNIQUE ... // TODO : Check if it is UNIQUE ...
m_id = _newId; m_id = _newId;
} }