comparison src/img-view.c @ 781:2d2cca2bceb0

Replace hardcoded collection filename extension by a macro (GQ_COLLECTION_EXT).
author zas_
date Tue, 03 Jun 2008 13:54:22 +0000
parents 44128da39e13
children d6a7fb4b8e7c
comparison
equal deleted inserted replaced
780:44128da39e13 781:2d2cca2bceb0
937 937
938 void view_window_new(FileData *fd) 938 void view_window_new(FileData *fd)
939 { 939 {
940 GList *list; 940 GList *list;
941 941
942 if (file_extension_match(fd->path, ".gqv")) 942 if (file_extension_match(fd->path, GQ_COLLECTION_EXT))
943 { 943 {
944 ViewWindow *vw; 944 ViewWindow *vw;
945 CollectionData *cd; 945 CollectionData *cd;
946 CollectInfo *info; 946 CollectInfo *info;
947 947