- Timestamp:
- 08/01/08 10:18:16 PM (5 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/LogicMail/src/org/logicprobe/LogicMail/mail/NetworkMailStore.java
r253 r259 109 109 } 110 110 111 public void requestFolderStatus(FolderTreeItem root) {112 connectionHandler.addRequest(IncomingMailConnectionHandler.REQUEST_FOLDER_STATUS, new Object[] { root});111 public void requestFolderStatus(FolderTreeItem[] folders) { 112 connectionHandler.addRequest(IncomingMailConnectionHandler.REQUEST_FOLDER_STATUS, new Object[] { folders }); 113 113 } 114 114 … … 165 165 break; 166 166 case IncomingMailConnectionHandler.REQUEST_FOLDER_STATUS: 167 fireFolderStatusChanged((FolderTreeItem)result); 167 FolderTreeItem[] folders = (FolderTreeItem[])result; 168 for(int i=0; i<folders.length; i++) { 169 fireFolderStatusChanged(folders[i]); 170 } 168 171 break; 169 172 case IncomingMailConnectionHandler.REQUEST_FOLDER_MESSAGES_RANGE:
