Update of /cvsroot/mahogany/M/src/gui
In directory usw-pr-cvs1:/tmp/cvs-serv21780/src/gui

Modified Files:
        wxFiltersDialog.cpp 
Log Message:
prepend the newly created quick filters to the filter list, not append then

Index: wxFiltersDialog.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/wxFiltersDialog.cpp,v
retrieving revision 1.83
retrieving revision 1.84
diff -b -u -2 -r1.83 -r1.84
--- wxFiltersDialog.cpp 12 Mar 2002 21:04:10 -0000      1.83
+++ wxFiltersDialog.cpp 27 Mar 2002 19:37:17 -0000      1.84
@@ -1857,5 +1857,7 @@
    filter->Set(fd);
 
-   m_folder->AddFilter(name);
+   // add it to the beginning of the filter list as it should override any
+   // other (presumably more generic) filters
+   m_folder->PrependFilter(name);
 
    return true;


_______________________________________________
Mahogany-cvsupdates mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/mahogany-cvsupdates

Reply via email to