Source Code (Use browser search to find items of interest.)

Class Index

qt'QFontCache (./qt-2.1.0/src/kernel/qfont_x11.cpp:227)

class QFontCache : public QCache<QFontInternal>
{
public:
    QFontCache( int maxCost, int size=17 )
	: QCache<QFontInternal>(maxCost,size) {}
    void deleteItem( Item );
};

void QFontCache::deleteItem( Item d )
{
    QFontInternal *fin = (QFontInternal *)d;
    fin->reset();
}



qt'QFontCache::deleteItem() (./qt-2.1.0/src/kernel/qfont_x11.cpp:235)

void QFontCache::deleteItem( Item d )
{
    QFontInternal *fin = (QFontInternal *)d;
    fin->reset();
}