/** Update the Symbol Conversion Panel button enabled states. */
  private void updateSymbolConversionPanelButtons(Binding binding) {
    // ------------------------------------------
    // Set the ConvertAll Button Enabled State
    // ------------------------------------------
    // If any binding has conflict and can convert then enable

    // Set ConvertAll Enabled State
    convertAllSqlSymbolsButton.setEnabled(bindingListInput.hasConflictsAndCanConvert());
  }