From 069c9b5175b9d260151c50b4f099f3396032e56a Mon Sep 17 00:00:00 2001 From: Andrew Voitov Date: Wed, 13 Sep 2023 12:27:44 +0400 Subject: [PATCH] Fix common formating error in samples --- ux components/ExtendingCustomComponents/source/main.brs | 2 +- ux components/SceneGraphCaptionsDemo/source/main.brs | 2 +- ux components/lists and grids/AdvancedRowList/source/main.brs | 2 +- .../lists and grids/RowListFocusStyleTest/source/main.brs | 2 +- ux components/lists and grids/SimpleMarkupList/source/main.brs | 2 +- ux components/lists and grids/SimpleRowList/source/main.brs | 2 +- .../lists and grids/variableWidthRowList/source/main.brs | 2 +- .../zoomRowListDefaultLayoutTest/source/main.brs | 2 +- ux components/screen elements/boundingRecttest/source/main.brs | 2 +- ux components/widgets/SimpleBusySpinner/source/main.brs | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/ux components/ExtendingCustomComponents/source/main.brs b/ux components/ExtendingCustomComponents/source/main.brs index e660746..ab82954 100644 --- a/ux components/ExtendingCustomComponents/source/main.brs +++ b/ux components/ExtendingCustomComponents/source/main.brs @@ -13,7 +13,7 @@ sub showChannelSGScreen() while(true) msg = wait(0, m.port) - msgType = type(msg) + msgType = type(msg) if msgType = "roSGScreenEvent" if msg.isScreenClosed() then return end if diff --git a/ux components/SceneGraphCaptionsDemo/source/main.brs b/ux components/SceneGraphCaptionsDemo/source/main.brs index 7073964..d6edee5 100644 --- a/ux components/SceneGraphCaptionsDemo/source/main.brs +++ b/ux components/SceneGraphCaptionsDemo/source/main.brs @@ -14,7 +14,7 @@ sub showChannelSGScreen() while(true) msg = wait(0, m.port) - msgType = type(msg) + msgType = type(msg) if msgType = "roSGScreenEvent" if msg.isScreenClosed() then return end if diff --git a/ux components/lists and grids/AdvancedRowList/source/main.brs b/ux components/lists and grids/AdvancedRowList/source/main.brs index 084d457..8ed5340 100644 --- a/ux components/lists and grids/AdvancedRowList/source/main.brs +++ b/ux components/lists and grids/AdvancedRowList/source/main.brs @@ -15,7 +15,7 @@ sub showChannelSGScreen() while(true) msg = wait(0, m.port) - msgType = type(msg) + msgType = type(msg) if msgType = "roSGScreenEvent" if msg.isScreenClosed() then return end if diff --git a/ux components/lists and grids/RowListFocusStyleTest/source/main.brs b/ux components/lists and grids/RowListFocusStyleTest/source/main.brs index c5fe40d..6d9d82e 100644 --- a/ux components/lists and grids/RowListFocusStyleTest/source/main.brs +++ b/ux components/lists and grids/RowListFocusStyleTest/source/main.brs @@ -17,7 +17,7 @@ sub showMarkupSGScreen() while(true) msg = wait(0, m.port) - msgType = type(msg) + msgType = type(msg) if msgType = "roSGScreenEvent" if msg.isScreenClosed() then return end if diff --git a/ux components/lists and grids/SimpleMarkupList/source/main.brs b/ux components/lists and grids/SimpleMarkupList/source/main.brs index d3146d1..15f4fc4 100644 --- a/ux components/lists and grids/SimpleMarkupList/source/main.brs +++ b/ux components/lists and grids/SimpleMarkupList/source/main.brs @@ -9,7 +9,7 @@ sub Main() while(true) msg = wait(0, m.port) - msgType = type(msg) + msgType = type(msg) if msgType = "roSGScreenEvent" if msg.isScreenClosed() then return end if diff --git a/ux components/lists and grids/SimpleRowList/source/main.brs b/ux components/lists and grids/SimpleRowList/source/main.brs index f263d5a..998c429 100644 --- a/ux components/lists and grids/SimpleRowList/source/main.brs +++ b/ux components/lists and grids/SimpleRowList/source/main.brs @@ -14,7 +14,7 @@ sub showChannelSGScreen() while(true) msg = wait(0, m.port) - msgType = type(msg) + msgType = type(msg) if msgType = "roSGScreenEvent" if msg.isScreenClosed() then return end if diff --git a/ux components/lists and grids/variableWidthRowList/source/main.brs b/ux components/lists and grids/variableWidthRowList/source/main.brs index ddced7b..2e251a7 100644 --- a/ux components/lists and grids/variableWidthRowList/source/main.brs +++ b/ux components/lists and grids/variableWidthRowList/source/main.brs @@ -8,7 +8,7 @@ sub Main() while(true) msg = wait(0, m.port) - msgType = type(msg) + msgType = type(msg) if msgType = "roSGScreenEvent" if msg.isScreenClosed() then return end if diff --git a/ux components/lists and grids/zoomRowListDefaultLayoutTest/source/main.brs b/ux components/lists and grids/zoomRowListDefaultLayoutTest/source/main.brs index 8ca6beb..09a88f5 100644 --- a/ux components/lists and grids/zoomRowListDefaultLayoutTest/source/main.brs +++ b/ux components/lists and grids/zoomRowListDefaultLayoutTest/source/main.brs @@ -7,7 +7,7 @@ sub Main() while(true) msg = wait(0, m.port) - msgType = type(msg) + msgType = type(msg) if msgType = "roSGScreenEvent" if msg.isScreenClosed() then return end if diff --git a/ux components/screen elements/boundingRecttest/source/main.brs b/ux components/screen elements/boundingRecttest/source/main.brs index b602ed2..e7465b3 100644 --- a/ux components/screen elements/boundingRecttest/source/main.brs +++ b/ux components/screen elements/boundingRecttest/source/main.brs @@ -13,7 +13,7 @@ sub showChannelSGScreen() while(true) msg = wait(0, m.port) - msgType = type(msg) + msgType = type(msg) if msgType = "roSGScreenEvent" if msg.isScreenClosed() then return end if diff --git a/ux components/widgets/SimpleBusySpinner/source/main.brs b/ux components/widgets/SimpleBusySpinner/source/main.brs index 0e9f471..fc983ea 100755 --- a/ux components/widgets/SimpleBusySpinner/source/main.brs +++ b/ux components/widgets/SimpleBusySpinner/source/main.brs @@ -7,7 +7,7 @@ sub Main() while(true) msg = wait(0, m.port) - msgType = type(msg) + msgType = type(msg) if msgType = "roSGScreenEvent" if msg.isScreenClosed() then return end if