wizards/source/sfdialogs/SF_DialogControl.xba | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
New commits: commit b760e1f28840ae5ecce0c00201fa058c17334203 Author: Andrea Gelmini <[email protected]> AuthorDate: Fri Dec 4 00:15:42 2020 +0100 Commit: Jean-Pierre Ledure <[email protected]> CommitDate: Fri Dec 4 15:54:20 2020 +0100 Fix typo Change-Id: I26d4878c4e555c3760aec442d0a27b753ba2fc90 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/107184 Tested-by: Jenkins Reviewed-by: Jean-Pierre Ledure <[email protected]> diff --git a/wizards/source/sfdialogs/SF_DialogControl.xba b/wizards/source/sfdialogs/SF_DialogControl.xba index 56d362e48a52..3a85149f3e93 100644 --- a/wizards/source/sfdialogs/SF_DialogControl.xba +++ b/wizards/source/sfdialogs/SF_DialogControl.xba @@ -27,7 +27,7 @@ Option Explicit ''' It is easy with the API proposed in the current class to populate a tree, either ''' - branch by branch (CreateRoot and AddChild), or ''' - with a set of branches at once (AddSubtree) -''' Additionally populating a TreeConctrol can be done statically or dynamically +''' Additionally populating a TreeControl can be done statically or dynamically ''' ''' Service invocation: ''' Dim myDialog As Object, myControl As Object @@ -741,7 +741,7 @@ Try: oRoot.DataValue = DataValue .setRoot(oRoot) ' To be visible, a root must have contained at least 1 child. Create a fictive one and erase it. - ' This behavious does not seem related to the RootDisplayed property ?? + ' This behaviour does not seem related to the RootDisplayed property ?? oRoot.appendChild(.createNode("Something", False)) oRoot.removeChildByIndex(0) End With @@ -1069,7 +1069,7 @@ Public Sub _Initialize() ''' - Initialization of private members ''' - Collection of main attributes -Dim vServiceName As Variant ' Splitted service name +Dim vServiceName As Variant ' Split service name Dim sType As String ' Last component of service name Try: _ImplementationName = _ControlModel.getImplementationName() @@ -1613,4 +1613,4 @@ Private Function _Repr() As String End Function ' SFDialogs.SF_DialogControl._Repr REM ============================================ END OF SFDIALOGS.SF_DIALOGCONTROL -</script:module> \ No newline at end of file +</script:module> _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
