GT-3269 changes from review

This commit is contained in:
ghidravore
2019-11-04 13:12:43 -05:00
parent d4afc4a3f1
commit d9fb56b47d
3 changed files with 3 additions and 3 deletions
@@ -24,7 +24,7 @@ public interface ListingDisplayListener {
/**
* Callback whenever the set of visible addresses change in the listing.
* @param visibleAddresses the current set of visible addresses in the listing. If no
* visible addresses are in the listing view, then an empty addressSetView will be return
* visible addresses are in the listing view, then an empty AddressSetView will be passed.
*/
void visibleAddressesChanged(AddressSetView visibleAddresses);
}
@@ -476,7 +476,7 @@ public class ListingPanel extends JPanel implements FieldMouseListener, FieldLoc
}
catch (Throwable t) {
Msg.showError(this, fieldPanel, "Error in Display Listener",
"Execption encountered in client callback", t);
"Execption encountered when notifying listeners of change in display", t);
}
}
@@ -128,7 +128,7 @@ public class VerticalPixelAddressMapImpl implements VerticalPixelAddressMap {
@Override
public AddressSetView getAddressSet() {
// If there are no visible layouts (no open data to dispaly or visible height = 0
// If there are no visible layouts (no open data to display or listing component height = 0)
if (layouts.isEmpty()) {
return new AddressSet();
}