Skip to content

Commit d92416a

Browse files
PhillipusHannesWell
authored andcommitted
Fire the correct property in Product#setIncludeJre
The property should be P_INCLUDE_JRE not P_INCLUDE_LAUNCHERS See #1278
1 parent 9648456 commit d92416a

File tree

1 file changed

+1
-1
lines changed
  • ui/org.eclipse.pde.core/src/org/eclipse/pde/internal/core/product

1 file changed

+1
-1
lines changed

ui/org.eclipse.pde.core/src/org/eclipse/pde/internal/core/product/Product.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -900,7 +900,7 @@ public void setIncludeJre(boolean include) {
900900
boolean old = fIncludeJre;
901901
fIncludeJre = include;
902902
if (isEditable()) {
903-
firePropertyChanged(P_INCLUDE_LAUNCHERS, Boolean.toString(old), Boolean.toString(fIncludeJre));
903+
firePropertyChanged(P_INCLUDE_JRE, Boolean.toString(old), Boolean.toString(fIncludeJre));
904904
}
905905

906906
}

0 commit comments

Comments
 (0)