[DEBUG] history missing first element

This commit is contained in:
Edouard DUPIN 2017-03-16 22:39:06 +01:00
parent df14d2364a
commit d8b43a1f78

View File

@ -45,11 +45,13 @@ namespace appl {
} }
std::unique_ptr<TYPE> data(new TYPE()); std::unique_ptr<TYPE> data(new TYPE());
if (data == nullptr) { if (data == nullptr) {
APPL_ERROR("ALLOCATION plugin data error");
return nullptr; return nullptr;
} }
TYPE* copyPocalPointer = data.get();
m_specificData.push_back(std::make_pair(_textDrawer.internalGetBuffer(), std::move(data))); m_specificData.push_back(std::make_pair(_textDrawer.internalGetBuffer(), std::move(data)));
// create a new one ... // create a new one ...
return data.get(); return copyPocalPointer;
} }
protected: // Wrap all element with their internal data: (do not use theses function) protected: // Wrap all element with their internal data: (do not use theses function)
bool onReceiveShortCut(appl::TextViewer& _textDrawer, bool onReceiveShortCut(appl::TextViewer& _textDrawer,