1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-24 01:54:22 +00:00

Work-arounds for compiling with VC6.

This commit is contained in:
Julian Storer 2010-03-11 11:37:40 +00:00
parent d84e47353c
commit 4ed63991e2
15 changed files with 206 additions and 222 deletions

View file

@ -1070,7 +1070,7 @@ void CodeEditorComponent::mouseWheelMove (const MouseEvent& e, float wheelIncrem
horizontalScrollBar->mouseWheelMove (e, wheelIncrementX, 0);
}
void CodeEditorComponent::scrollBarMoved (ScrollBar* scrollBarThatHasMoved, const double newRangeStart)
void CodeEditorComponent::scrollBarMoved (ScrollBar* scrollBarThatHasMoved, double newRangeStart)
{
if (scrollBarThatHasMoved == verticalScrollBar)
scrollToLineInternal ((int) newRangeStart);

View file

@ -237,7 +237,7 @@ public:
/** @internal */
void timerCallback();
/** @internal */
void scrollBarMoved (ScrollBar* scrollBarThatHasMoved, const double newRangeStart);
void scrollBarMoved (ScrollBar* scrollBarThatHasMoved, double newRangeStart);
/** @internal */
void handleAsyncUpdate();
/** @internal */