[DEV] display code correction

This commit is contained in:
2013-05-22 21:28:26 +02:00
parent 543cd8ddf1
commit 1724955f67
2 changed files with 3 additions and 3 deletions

View File

@@ -211,11 +211,11 @@ bool CodeView::OnEventEntry(const ewol::EventEntry& _event)
return true;
}
void CodeView::OnEventClipboard(ewol::clipBoard::clipboardListe_te clipboardID)
void CodeView::OnEventClipboard(ewol::clipBoard::clipboardListe_te _clipboardID)
{
BufferText* tmpBuffer = BufferManager::Get(m_bufferID);
if (NULL!=tmpBuffer) {
tmpBuffer->Paste(clipboardID);
tmpBuffer->Paste(_clipboardID);
}
MarkToRedraw();
}