Fix for swaped sorting columns. Had mapped the wrong enumerations to the wrong commands. Fix from Juergen Keil <jk@tools.de>. R&A-ramiro

git-svn-id: svn://10.0.0.236/trunk@73 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
slamm
1998-04-08 00:11:05 +00:00
parent 8b4219cb46
commit a8ff695de8

View File

@@ -474,11 +474,11 @@ XFE_BookmarkView::commandToBMCmd(CommandType cmd)
? BM_Cmd_Sort_Address
: BM_Cmd_Sort_Address_Asc))
BM_CMDMAP(xfeCmdSortByDateLastVisited, (m_sortDescending
? BM_Cmd_Sort_AddDate
: BM_Cmd_Sort_AddDate_Asc))
BM_CMDMAP(xfeCmdSortByDateCreated, (m_sortDescending
? BM_Cmd_Sort_LastVisit
: BM_Cmd_Sort_LastVisit_Asc))
BM_CMDMAP(xfeCmdSortByDateCreated, (m_sortDescending
? BM_Cmd_Sort_AddDate
: BM_Cmd_Sort_AddDate_Asc))
BM_CMDMAP(xfeCmdSortBookmarks, BM_Cmd_SortBookmarks) // Sort Bookmarks
BM_CMDMAP(xfeCmdSetNewBookmarkFolder, BM_Cmd_SetAddHeader)