branch develop updated (ccc25c7 -> df5ead2)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository faxtomail. See http://git.codelutin.com/faxtomail.git from ccc25c7 Mettre à jour la liste dans le dossier quand on quitte l'édition d'une demande fixes #7415 new df5ead2 fixes #7417 [Liste des demandes] Erreur quand on clique sur une cellule de pj, puis ailleurs The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit df5ead2ca3cebfa9b0c25109b16073b5970b48f7 Author: Kevin Morin <morin@codelutin.com> Date: Tue Jul 28 17:26:47 2015 +0200 fixes #7417 [Liste des demandes] Erreur quand on clique sur une cellule de pj, puis ailleurs Summary of changes: .../faxtomail/ui/swing/util/AbstractToolbarPopupButton.java | 8 ++++++-- faxtomail-ui-swing/src/main/resources/log4j2.xml | 1 + 2 files changed, 7 insertions(+), 2 deletions(-) -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository faxtomail. See http://git.codelutin.com/faxtomail.git commit df5ead2ca3cebfa9b0c25109b16073b5970b48f7 Author: Kevin Morin <morin@codelutin.com> Date: Tue Jul 28 17:26:47 2015 +0200 fixes #7417 [Liste des demandes] Erreur quand on clique sur une cellule de pj, puis ailleurs --- .../faxtomail/ui/swing/util/AbstractToolbarPopupButton.java | 8 ++++++-- faxtomail-ui-swing/src/main/resources/log4j2.xml | 1 + 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/util/AbstractToolbarPopupButton.java b/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/util/AbstractToolbarPopupButton.java index f6034a4..09e16c4 100644 --- a/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/util/AbstractToolbarPopupButton.java +++ b/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/util/AbstractToolbarPopupButton.java @@ -113,14 +113,18 @@ public abstract class AbstractToolbarPopupButton<UI extends AbstractToolbarPopup if (log.isDebugEnabled()) { log.debug("stateChanged addWindowListener"); } - buttonFrame.addWindowFocusListener(windowAdapter); + if (buttonFrame != null) { + buttonFrame.addWindowFocusListener(windowAdapter); + } } } else { if (popup.isVisible()) { if (log.isDebugEnabled()) { log.debug("stateChanged removeWindowListener"); } - buttonFrame.removeWindowFocusListener(windowAdapter); + if (buttonFrame != null) { + buttonFrame.removeWindowFocusListener(windowAdapter); + } } popup.closeEditor(); } diff --git a/faxtomail-ui-swing/src/main/resources/log4j2.xml b/faxtomail-ui-swing/src/main/resources/log4j2.xml index 5d07083..0539ea7 100644 --- a/faxtomail-ui-swing/src/main/resources/log4j2.xml +++ b/faxtomail-ui-swing/src/main/resources/log4j2.xml @@ -45,6 +45,7 @@ <Loggers> <Logger name="com.franciaflex.faxtomail" level="info"/> + <!--<Logger name="com.franciaflex.faxtomail.ui" level="debug"/>--> <!--<Logger name="com.franciaflex.faxtomail.persistence" level="debug"/>--> <!--<Logger name="com.franciaflex.faxtomail.persistence.entities.AbstractFaxToMailTopiaDao" level="trace"/>--> <!--<Logger name="com.franciaflex.faxtomail.services" level="debug"/>--> -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
participants (1)
-
codelutin.com scm