Changeset 769 for trunk/src/gui/text/qfontdatabase.cpp
- Timestamp:
- Aug 2, 2010, 9:27:30 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/vendor/nokia/qt/4.6.3 (added) merged: 768 /branches/vendor/nokia/qt/current merged: 767 /branches/vendor/nokia/qt/4.6.2 removed
- Property svn:mergeinfo changed
-
trunk/src/gui/text/qfontdatabase.cpp
r651 r769 87 87 #define SMOOTH_SCALABLE 0xffff 88 88 89 extern int qt_defaultDpiY(); // in qfont.cpp89 Q_GUI_EXPORT extern int qt_defaultDpiY(); // in qfont.cpp 90 90 91 91 bool qt_enable_test_font = false; … … 611 611 #if defined(Q_OS_SYMBIAN) && defined(QT_NO_FREETYPE) 612 612 // class with virtual destructor, derived in qfontdatabase_s60.cpp 613 class Q FontDatabaseS60Store613 class QSymbianFontDatabaseExtras 614 614 { 615 615 public: 616 virtual ~Q FontDatabaseS60Store() {}616 virtual ~QSymbianFontDatabaseExtras() {} 617 617 }; 618 618 #endif … … 630 630 #endif 631 631 #if defined(Q_OS_SYMBIAN) && defined(QT_NO_FREETYPE) 632 , s 60Store(0)632 , symbianExtras(0) 633 633 #endif 634 634 { } … … 644 644 count = 0; 645 645 #if defined(Q_OS_SYMBIAN) && defined(QT_NO_FREETYPE) 646 if (s 60Store) {647 delete s 60Store;648 s 60Store= 0;646 if (symbianExtras) { 647 delete symbianExtras; 648 symbianExtras = 0; 649 649 } 650 650 #endif … … 691 691 QStringList fallbackFamilies; 692 692 #elif defined(Q_OS_SYMBIAN) && defined(QT_NO_FREETYPE) 693 const Q FontDatabaseS60Store *s60Store;693 const QSymbianFontDatabaseExtras *symbianExtras; 694 694 #endif 695 695
Note:
See TracChangeset
for help on using the changeset viewer.