use of org.pentaho.di.ui.core.dialog.AboutDialog in project pentaho-kettle by pentaho.
the class Spoon method helpAbout.
public void helpAbout() {
try {
AboutDialog aboutDialog = new AboutDialog(getShell());
aboutDialog.open();
} catch (KettleException e) {
log.logError("Error opening about dialog", e);
}
}
Aggregations