Ignore:
Timestamp:
Aug 2, 2010, 9:27:30 PM (15 years ago)
Author:
Dmitry A. Kuminov
Message:

trunk: Merged in qt 4.6.3 sources from branches/vendor/nokia/qt.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/src/gui/text/qfontdatabase.cpp

    r651 r769  
    8787#define SMOOTH_SCALABLE 0xffff
    8888
    89 extern int qt_defaultDpiY(); // in qfont.cpp
     89Q_GUI_EXPORT extern int qt_defaultDpiY(); // in qfont.cpp
    9090
    9191bool qt_enable_test_font = false;
     
    611611#if defined(Q_OS_SYMBIAN) && defined(QT_NO_FREETYPE)
    612612// class with virtual destructor, derived in qfontdatabase_s60.cpp
    613 class QFontDatabaseS60Store
     613class QSymbianFontDatabaseExtras
    614614{
    615615public:
    616     virtual ~QFontDatabaseS60Store() {}
     616    virtual ~QSymbianFontDatabaseExtras() {}
    617617};
    618618#endif
     
    630630#endif
    631631#if defined(Q_OS_SYMBIAN) && defined(QT_NO_FREETYPE)
    632           , s60Store(0)
     632          , symbianExtras(0)
    633633#endif
    634634    { }
     
    644644        count = 0;
    645645#if defined(Q_OS_SYMBIAN) && defined(QT_NO_FREETYPE)
    646         if (s60Store) {
    647             delete s60Store;
    648             s60Store = 0;
     646        if (symbianExtras) {
     647            delete symbianExtras;
     648            symbianExtras = 0;
    649649        }
    650650#endif
     
    691691    QStringList fallbackFamilies;
    692692#elif defined(Q_OS_SYMBIAN) && defined(QT_NO_FREETYPE)
    693     const QFontDatabaseS60Store *s60Store;
     693    const QSymbianFontDatabaseExtras *symbianExtras;
    694694#endif
    695695
Note: See TracChangeset for help on using the changeset viewer.