[DEV] display code correction

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

View File

@ -28,7 +28,7 @@
</rule>
<rule name="normale Balise">
<color>functionName</color>
<start>&lt;/[0-9a-fA-F_]*|&lt;[0-9a-fA-F_]*|/&gt;|&gt;</start>
<start>&lt;/[0-9a-zA-Z_]+|&lt;[0-9a-zA-Z_]+|/&gt;|&gt;</start>
</rule>
</pass2>
</EdnLang>

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();
}