[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>
<rule name="normale Balise"> <rule name="normale Balise">
<color>functionName</color> <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> </rule>
</pass2> </pass2>
</EdnLang> </EdnLang>

View File

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