|
From: <de...@us...> - 2003-12-12 10:58:45
|
Update of /cvsroot/fudaa/fudaa_devel/fudaa/src/org/fudaa/fudaa/commun/undo
In directory sc8-pr-cvs1:/tmp/cvs-serv25602/undo
Modified Files:
FudaaUndoCmdMngListener.java
Log Message:
Deplacement FileChooser
Index: FudaaUndoCmdMngListener.java
===================================================================
RCS file: /cvsroot/fudaa/fudaa_devel/fudaa/src/org/fudaa/fudaa/commun/undo/FudaaUndoCmdMngListener.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** FudaaUndoCmdMngListener.java 25 Nov 2003 10:13:36 -0000 1.2
--- FudaaUndoCmdMngListener.java 12 Dec 2003 10:58:42 -0000 1.3
***************
*** 11,17 ****
--- 11,22 ----
import java.util.Iterator;
import java.util.Set;
+
+ import org.fudaa.ctulu.CtuluLib;
+
import com.memoire.bu.BuCommonImplementation;
+
import org.fudaa.dodico.commun.DodicoCmdMngListener;
import org.fudaa.dodico.commun.DodicoCommandManager;
+
import org.fudaa.fudaa.commun.FudaaLib;
/**
***************
*** 43,54 ****
impl_.setEnabledForAction("DEFAIRE", active_.canUndo());
impl_.setEnabledForAction("REFAIRE", active_.canRedo());
! if (FudaaLib.DEBUG)
! FudaaLib.debug("setActif undoredo Manager");
} else if (!b && (active_ == _m)) {
active_= null;
impl_.setEnabledForAction("DEFAIRE", false);
impl_.setEnabledForAction("REFAIRE", false);
! if (FudaaLib.DEBUG)
! FudaaLib.debug("setUnactif undoredo Manager");
}
}
--- 48,59 ----
impl_.setEnabledForAction("DEFAIRE", active_.canUndo());
impl_.setEnabledForAction("REFAIRE", active_.canRedo());
! if (CtuluLib.DEBUG)
! CtuluLib.debug("setActif undoredo Manager");
} else if (!b && (active_ == _m)) {
active_= null;
impl_.setEnabledForAction("DEFAIRE", false);
impl_.setEnabledForAction("REFAIRE", false);
! if (CtuluLib.DEBUG)
! CtuluLib.debug("setUnactif undoredo Manager");
}
}
***************
*** 65,75 ****
DodicoCommandManager cmd= (DodicoCommandManager)it.next();
if (cmd != active_) {
! if (FudaaLib.DEBUG)
! FudaaLib.debug("clean undoredo Manager");
cmd.clean();
}
}
} else {
! FudaaLib.error("problem with undoredo manager");
}
}
--- 70,80 ----
DodicoCommandManager cmd= (DodicoCommandManager)it.next();
if (cmd != active_) {
! if (CtuluLib.DEBUG)
! CtuluLib.debug("clean undoredo Manager");
cmd.clean();
}
}
} else {
! CtuluLib.error("problem with undoredo manager");
}
}
|