I all, i noticed a strange behaviour in how the fonts are rendered by Qt4 Applications compared to GTK and/or Qt3 (KDE3.5.x)

Here's a quick example:
IMAGE1: http://img520.imageshack.us/img520/9798/yaf7ge6.png

And a detailed one:
IMAGE2: http://img145.imageshack.us/img145/7676/qt3qt4kc2.png


Qt3 on the left, Qt4 on the right, as you can see, rendering done by qt3 is much more sharper, qt4 tend to smooth out the font, and i would like to have qt4 one output like qt3 one.
Also i got the same result in another gentoo system (tried both 32 and 64 bit)

Some relevant info, maybe:
Qt Code:
  1. > xrdb -q |grep Xft
  2. Xft.antialias: 1
  3. Xft.autohint: 0
  4. Xft.dpi: 96.000000
  5. Xft.hinting: 1
  6. Xft.hintstyle: hintfull
  7. Xft.rgba: rgb
To copy to clipboard, switch view to plain text mode 

Qt Code:
  1. cat ~/.fonts.conf
  2. <?xml version="1.0"?>
  3. <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
  4. <fontconfig>
  5. <match target="font" >
  6. <edit mode="assign" name="rgba" >
  7. <const>rgb</const>
  8. </edit>
  9. </match>
  10. <match target="font" >
  11. <edit mode="assign" name="hinting" >
  12. <bool>true</bool>
  13. </edit>
  14. </match>
  15. <match target="font" >
  16. <edit mode="assign" name="hintstyle" >
  17. <const>hintfull</const>
  18. </edit>
  19. </match>
  20. <match target="font" >
  21. <edit mode="assign" name="antialias" >
  22. <bool>true</bool>
  23. </edit>
  24. </match>
  25. </fontconfig>
To copy to clipboard, switch view to plain text mode 

I'm on a gentoo system, using:
freetype 2.3.5-r2 with BC support
qt 3.3.8-r4
qt 4.3.2
Xorg version 7.2

Is this a known issue or am i missing something?

Thanks in advance.