Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
authorLaurent Monin <geeqie@norz.org>
Sun, 17 Aug 2008 09:30:45 +0000 (09:30 +0000)
committerLaurent Monin <geeqie@norz.org>
Sun, 17 Aug 2008 09:30:45 +0000 (09:30 +0000)
commit3e3a0a459781d1008725274bde950589465acf6d
treec612aa2c7f8a86adf9d0f30ac74924b029fd5fba
parent728c032c4cf6b098b968851a75f6bbe5488040b3
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
- drop VFICON_INFO() and VFLIST_INFO() macros
- rename VFLIST_INFO_POINTER() and VFICON_INFO_POINTER() to shorter VFLIST() and VFICON().
- replace all related occurrences by shorter expressions.

For example:
VFICON_INFO(vf, columns) becomes VFICON(vf)->columns
VFLIST_INFO(vf, click_fd) becomes VFLIST(vf)->click_fd
src/view_file.c
src/view_file.h
src/view_file_icon.c
src/view_file_list.c