1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-30 02:50:05 +00:00

Minor fix to Atomic. Jucer development.

This commit is contained in:
Julian Storer 2010-05-04 15:27:19 +01:00
parent 7299608550
commit e6a5f1501f
13 changed files with 152 additions and 20 deletions

View file

@ -1100,12 +1100,12 @@ void CodeEditorComponent::scrollBarMoved (ScrollBar* scrollBarThatHasMoved, doub
}
//==============================================================================
void CodeEditorComponent::focusGained (FocusChangeType cause)
void CodeEditorComponent::focusGained (FocusChangeType)
{
caret->updatePosition();
}
void CodeEditorComponent::focusLost (FocusChangeType cause)
void CodeEditorComponent::focusLost (FocusChangeType)
{
caret->updatePosition();
}