On Sunday 13 February 2005 12:13, Chris Cannam wrote:
>     cerr << "NoteFontMap::NoteFontMap() decimalSymbol="
>          <<  KGlobal::locale()->decimalSymbol() << endl;
>
> to notefont.cpp, partly to see what it would say and partly so I could
> tell I was running the right version.
>
> It says
>
> NoteFontMap::NoteFontMap() decimalSymbol=,

Seems that KLocale has nothing to do with the locale settings used by strtod 
and QString.toDouble(). Try this instead:

    struct lconv *locale_ptr=localeconv();
    cerr << "NoteFontMap::NoteFontMap() decimalSymbol="
         << locale_ptr->decimal_point << endl;

But anyway, if you don't see the problems with clefs and printing, then it may 
be a problem with some library version only. 

Regards,
Pedro



-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
_______________________________________________
Rosegarden-devel mailing list
[email protected] - use the link below to unsubscribe
https://lists.sourceforge.net/lists/listinfo/rosegarden-devel

Reply via email to