On Fri, Oct 19, 2007 at 02:47:34PM -0000, [EMAIL PROTECTED] wrote:
> Author: younes
> Date: Fri Oct 19 16:47:32 2007
> New Revision: 21063
> 
> URL: http://www.lyx.org/trac/changeset/21063
> Log:
> incremental cleanup
> 
> Modified:
>     lyx-devel/trunk/src/FontList.cpp
>     lyx-devel/trunk/src/FontList.h
>     lyx-devel/trunk/src/Paragraph.cpp
> 
> Modified: lyx-devel/trunk/src/FontList.cpp
> URL: http://www.lyx.org/trac/file/lyx-devel/trunk/src/FontList.cpp?rev=21063
> ==============================================================================
> --- lyx-devel/trunk/src/FontList.cpp (original)
> +++ lyx-devel/trunk/src/FontList.cpp Fri Oct 19 16:47:32 2007
> @@ -31,6 +31,18 @@
>  
>  namespace lyx {
>  
> +namespace {
> +
> +class matchFT
> +{
> +public:
> +     /// used by lower_bound and upper_bound
> +     int operator()(FontTable const & a, FontTable const & b) const {
> +             return a.pos() < b.pos();
> +     }
> +};

Could we stick to using class names starting with a capital letter?

Andre'

Reply via email to