calling the wrong api to move a folder. Infact it was copying for move.

2005-07-19  Srinivasa Ragavan <sragavan@novell.com>

	* em-folder-tree.c: (emft_popup_move) calling the wrong api to
	move a folder. Infact it was copying for move.

svn path=/trunk/; revision=29808
This commit is contained in:
Srinivasa Ragavan
2005-07-20 05:39:45 +00:00
committed by Srinivasa Ragavan
parent dd4194325e
commit 91babfa1cd
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-07-19 Srinivasa Ragavan <sragavan@novell.com>
* em-folder-tree.c: (emft_popup_move) calling the wrong api to
move a folder. Infact it was copying for move.
2005-07-14 Vivek Jain <jvivek@novell.com>
* em-composer-utils.c : included missing header

View File

@ -2020,7 +2020,7 @@ emft_popup_move(EPopup *ep, EPopupItem *item, void *data)
CamelFolderInfo *fi = NULL;
if ((fi = em_folder_tree_get_selected_folder_info (emft)) != NULL) {
em_folder_utils_copy_folder(fi);
em_folder_utils_move_folder(fi);
}
}