From b257c25c2c9478638f51e198e84d82398526c2b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0imon=20Brandner?= Date: Mon, 22 Mar 2021 07:40:36 +0100 Subject: [PATCH] Make functions private MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Šimon Brandner --- src/components/views/voip/CallViewForRoom.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/views/voip/CallViewForRoom.tsx b/src/components/views/voip/CallViewForRoom.tsx index 3e225ccd95..0ef5e5b350 100644 --- a/src/components/views/voip/CallViewForRoom.tsx +++ b/src/components/views/voip/CallViewForRoom.tsx @@ -79,15 +79,15 @@ export default class CallViewForRoom extends React.Component { return call; } - onResizeStart = () => { + private onResizeStart = () => { this.props.resizeNotifier.startResizing(); } - onResize = () => { + private onResize = () => { this.props.resizeNotifier.notifyTimelineHeightChanged(); } - onResizeStop = () => { + private onResizeStop = () => { this.props.resizeNotifier.stopResizing(); }