Revision 951

View differences:

trunk/frameworks/_fwAndami/src/com/iver/andami/ui/mdiFrame/NewStatusBar.java
119 119
     * @param texto texto
120 120
     */
121 121
    public void setInfoTextTemporal(String texto) {
122
        logger.debug("estableciendo contenido temporal"); //$NON-NLS-1$
123 122
        contenidoTemporal = true;
124 123

  
125 124
        estadoAnterior = this.estado;
......
137 136
     * @param texto texto
138 137
     */
139 138
    public void setWarningTextTemporal(String texto) {
140
        logger.debug("estableciendo contenido temporal"); //$NON-NLS-1$
141 139
        contenidoTemporal = true;
142 140

  
143 141
        estadoAnterior = this.estado;
......
155 153
     * @param texto texto
156 154
     */
157 155
    public void setErrorTextTemporal(String texto) {
158
        logger.debug("estableciendo contenido temporal"); //$NON-NLS-1$
159 156
        contenidoTemporal = true;
160 157

  
161 158
        estadoAnterior = this.estado;
......
173 170
     * @param texto Texto
174 171
     */
175 172
    public void setInfoText(String texto) {
176
        logger.debug("estableciendo contenido premanente"); //$NON-NLS-1$
177

  
178 173
        if (contenidoTemporal) {
179 174
            textoAnterior = texto;
180 175
            estadoAnterior = INFO;
......
192 187
     * @param texto Texto
193 188
     */
194 189
    public void setWarningText(String texto) {
195
        logger.debug("estableciendo contenido premanente"); //$NON-NLS-1$
196

  
197 190
        if (contenidoTemporal) {
198 191
            textoAnterior = texto;
199 192
            estadoAnterior = WARNING;
......
211 204
     * @param texto Texto
212 205
     */
213 206
    public void setErrorText(String texto) {
214
        logger.debug("estableciendo contenido premanente"); //$NON-NLS-1$
215

  
216 207
        if (contenidoTemporal) {
217 208
            textoAnterior = texto;
218 209
            estadoAnterior = ERROR;
trunk/libraries/libCorePlugin/src/com/iver/core/mdiManager/NewSkin.java
98 98
			vis.deleteViewInfo(p);
99 99
			vi = vis.getViewInfo(anterior);
100 100

  
101
			if (fvs.contains(p)){
102
				JInternalFrame frame = fvs.getJInternalFrame(anterior);
101
			if (!fvs.contains(p)){
102
				JInternalFrame frame = fvs.getJInternalFrame(p);
103 103
				addJInternalFrame(frame, vi);
104 104
			}else{
105 105
				JInternalFrame frame = fvs.getJInternalFrame(anterior);

Also available in: Unified diff