Skip to content

Commit

Permalink
Merge pull request #12 from africanmathsinitiative/master
Browse files Browse the repository at this point in the history
Update master
  • Loading branch information
MeSophie authored Oct 13, 2022
2 parents da5465b + 44afe0e commit 3dc9bb2
Show file tree
Hide file tree
Showing 53 changed files with 8,348 additions and 1,665 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -239,3 +239,6 @@ installer/Output/
/instat/dlgFrequency.sw-KE.resx
/instat/dlgFrequency.resx
/instat/dlgFrequency.Designer.vb

# Package used by script window
/packages/jacobslusser.ScintillaNET.*/
3 changes: 2 additions & 1 deletion instat/Model/DataFrame/clsDataFramePage.vb
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,8 @@ Public Class clsDataFramePage
ElseIf strHeaderType.Contains("logical") Then
columnHeader.strTypeShortCode = "(L)"
' Structured columns e.g. "circular" are coded with "(S)"
ElseIf strHeaderType.Contains("circular") Then
ElseIf strHeaderType.Contains("circular") OrElse strHeaderType.Contains("bigz") OrElse
strHeaderType.Contains("bigq") Then
columnHeader.strTypeShortCode = "(S)"
' Types of data for specific Application areas e.g. survival are coded with "(A)"
' No examples implemented yet.
Expand Down
2 changes: 1 addition & 1 deletion instat/dlgCalculator.vb
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ Public Class dlgCalculator
Me.Width = iBasicWidth * 1.27
ucrBase.iHelpTopicID = 598
Case "Integer"
Me.Width = iBasicWidth * 1.37
Me.Width = iBasicWidth * 1.38
Case Else
Me.Width = iBasicWidth
End Select
Expand Down
4 changes: 2 additions & 2 deletions instat/dlgClimaticSummary.Designer.vb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions instat/dlgExportDataset.vb
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@ Public Class dlgExportDataset
Private clsDefaultFunction As New RFunction

Private Sub dlgExportDataset_Load(sender As Object, e As EventArgs) Handles Me.Load
'temporarily commented out because it overwrites lblConfirm text contents
'autoTranslate(Me)

If bFirstLoad Then
InitialiseDialog()
bFirstLoad = False
Expand All @@ -34,6 +31,7 @@ Public Class dlgExportDataset
End If
SetRCodeForControls(bReset)
bReset = False
autoTranslate(Me)
End Sub

Private Sub InitialiseDialog()
Expand Down
64 changes: 44 additions & 20 deletions instat/dlgHeatMapPlot.Designer.vb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 3dc9bb2

Please sign in to comment.