|
From: <cro...@li...> - 2003-10-17 15:06:28
|
Module Name: CFJavaEditor
Committed By: avogl
Date: Fri Oct 17 15:05:46 UTC 2003
Modified Files:
CFJavaEditor/src/cfeditor: CArchPanel.java
Log Message:
Small bug: When no arches could be found,
an exception was thrown.
Fixed by this checkin.
--AV
Start of context diffs
Index: CFJavaEditor/src/cfeditor/CArchPanel.java
diff -c CFJavaEditor/src/cfeditor/CArchPanel.java:1.8 CFJavaEditor/src/cfeditor/CArchPanel.java:1.9
*** CFJavaEditor/src/cfeditor/CArchPanel.java:1.8 Sun Oct 12 07:23:46 2003
--- CFJavaEditor/src/cfeditor/CArchPanel.java Fri Oct 17 08:05:45 2003
***************
*** 184,192 ****
while (node != null && node.data.getPanel() != sel)
node=node.next;
! m_selectedPanel = node.data;
! if(m_selectedPanel != null)
m_selectedPanel.showArchList();
}
void appExitNotify() {
--- 184,193 ----
while (node != null && node.data.getPanel() != sel)
node=node.next;
! if(node != null && node.data != null) {
! m_selectedPanel = node.data;
m_selectedPanel.showArchList();
+ }
}
void appExitNotify() {
|