mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Fix for a crash when deleting FileBrowserComponent under certain circumstances.
This commit is contained in:
parent
7086f673ac
commit
a4f5faec2d
4 changed files with 40 additions and 8 deletions
|
|
@ -253,6 +253,8 @@ public:
|
|||
/** @internal */
|
||||
void componentMovedOrResized (Component&, bool wasMoved, bool wasResized) override;
|
||||
/** @internal */
|
||||
void lookAndFeelChanged() override;
|
||||
/** @internal */
|
||||
bool useMouseWheelMoveIfNeeded (const MouseEvent&, const MouseWheelDetails&);
|
||||
/** @internal */
|
||||
static bool respondsToKey (const KeyPress&);
|
||||
|
|
@ -261,6 +263,7 @@ private:
|
|||
//==============================================================================
|
||||
WeakReference<Component> contentComp;
|
||||
Rectangle<int> lastVisibleArea;
|
||||
bool customScrollBarThickness;
|
||||
int scrollBarThickness;
|
||||
int singleStepX, singleStepY;
|
||||
bool showHScrollbar, showVScrollbar, deleteContent;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue