diff --git a/resources/install/windows/installer-windows.wxs b/resources/install/windows/installer-windows.wxs index 327f94190..6c7908891 100644 --- a/resources/install/windows/installer-windows.wxs +++ b/resources/install/windows/installer-windows.wxs @@ -380,7 +380,7 @@ - + @@ -438,6 +438,67 @@ + + + + + + CostingComplete = 1 + + + 1 + + + + + + + + + + Installed AND NOT RESUME AND NOT Preselected + + + + + + + + + + + + 1 + + + + + + + + + + Installed AND (RESUME OR Preselected) + + + + @@ -457,7 +518,7 @@ - + 1 @@ -484,11 +545,11 @@ NOT Installed Installed - 1 + 1 1 1 - 1 + 1 diff --git a/src/net/java/sip/communicator/plugin/notificationconfiguration/NotificationConfigurationPanel.java b/src/net/java/sip/communicator/plugin/notificationconfiguration/NotificationConfigurationPanel.java index c4e01b6de..45d76ab16 100644 --- a/src/net/java/sip/communicator/plugin/notificationconfiguration/NotificationConfigurationPanel.java +++ b/src/net/java/sip/communicator/plugin/notificationconfiguration/NotificationConfigurationPanel.java @@ -1066,21 +1066,16 @@ public void updateTable() public void buildingVector() { - Iterator it = notificationService.getRegisteredEvents(); + Iterator it = notificationService.getRegisteredEvents(); NotificationsTableEntry tmpNTE = null; String event = null; Map actionsMap = null; - int i; dataVector.removeAllElements(); - if(!it.hasNext()) - return; - while(it.hasNext()) { - String actionType = null; - event = (String) it.next(); + event = it.next(); tmpNTE = new NotificationsTableEntry( notificationService.isActive(event), @@ -1101,7 +1096,7 @@ public void buildingVector() while(itEntry.hasNext()) { Map.Entry mEntry = (Map.Entry) itEntry.next(); - actionType = (String) mEntry.getKey(); + String actionType = (String) mEntry.getKey(); NotificationActionHandler handler = null;