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:
parent
d84e47353c
commit
4ed63991e2
15 changed files with 206 additions and 222 deletions
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue