Skip to content

Commit

Permalink
TEIIDDES-2216 synched includeHeader() and setDoUseHeaderForColumnNames()
Browse files Browse the repository at this point in the history
methods with checkbox widget seslection listeners.
  • Loading branch information
blafond committed Jun 26, 2014
1 parent 7e34ed6 commit 9517db1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Expand Up @@ -376,6 +376,7 @@ private void createDelimitedFileOptionsGroup(Composite parent) {
public void widgetSelected(final SelectionEvent event) {
if( !synchronizing ) {
dataFileInfo.setDoUseHeaderForColumnNames(useHeaderForColumnNamesCB.getSelection());
dataFileInfo.setIncludeHeader(useHeaderForColumnNamesCB.getSelection());
handleInfoChanged(false);
}
}
Expand Down
Expand Up @@ -123,6 +123,7 @@ private void createOptionsGroup(Composite parent) {
public void widgetSelected(final SelectionEvent event) {
if( !synchronizing ) {
dataFileInfo.setIncludeHeader(useHeaderInSQLCB.getSelection());
dataFileInfo.setDoUseHeaderForColumnNames(useHeaderInSQLCB.getSelection());
synchronizeUI();
}
}
Expand Down

0 comments on commit 9517db1

Please sign in to comment.