Skip to content

Commit

Permalink
Remove warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
boutinb committed Nov 23, 2023
1 parent 22cfe7d commit bf7c910
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions Desktop/components/JASP/Widgets/ColumnBasicInfo.qml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ Item
implicitHeight: Math.max(leftColumn.childrenRect.height, rightColumn.childrenRect.height) + 2 * jaspTheme.generalAnchorMargin
height: implicitHeight
property bool closeIcon: true
property alias columnNameValue: columnNameVariablesWindow.value
property alias columnTitleValue: columnTitleVariablesWindow.value
property alias columnDescriptionValue: columnDescriptionVariablesWindow.text
property alias columnComputedTypeValue: computedTypeVariableWindow.value
property alias columnTypeValue: columnTypeVariableWindow.value

Column
{
Expand Down
10 changes: 5 additions & 5 deletions Desktop/components/JASP/Widgets/VariablesWindow.qml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ FocusScope
{
if (columnModel.visible && columnModel.chosenColumn >= 0)
{
columnModel.columnName = columnNameVariablesWindow.value
columnModel.columnTitle = columnTitleVariablesWindow.value
columnModel.columnDescription = columnDescriptionVariablesWindow.text
columnModel.computedType = computedTypeVariableWindow.value
columnModel.currentColumnType = columnTypeVariableWindow.value
columnModel.columnName = tabInfo.columnNameValue
columnModel.columnTitle = tabInfo.columnTitleValue
columnModel.columnDescription = tabInfo.columnDescriptionValue
columnModel.computedType = tabInfo.columnComputedTypeValue
columnModel.currentColumnType = tabInfo.columnTypeValue
}
}

Expand Down

0 comments on commit bf7c910

Please sign in to comment.