Changeset 13537 in vbox for trunk/src/VBox/Frontends/VirtualBox4
- Timestamp:
- Oct 23, 2008 1:53:01 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 38388
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/src/main.cpp
r13535 r13537 249 249 QString currentFamily (QApplication::font().family()); 250 250 bool isCurrentScaleable = fontDataBase.isScalable (currentFamily); 251 LogFlowFunc (("Font: Current family is '%s'. It is %s.\n",251 printf ("Font: Current family is '%s'. It is %s.\n", 252 252 currentFamily.toLatin1().constData(), 253 isCurrentScaleable ? "scalable" : "not scalable") );253 isCurrentScaleable ? "scalable" : "not scalable"); 254 254 255 255 QStringList subFamilies (QFont::substitutes (currentFamily)); … … 257 257 { 258 258 bool isSubScalable = fontDataBase.isScalable (sub); 259 LogFlowFunc (("Font: Substitute family is '%s'. It is %s.\n",259 printf ("Font: Substitute family is '%s'. It is %s.\n", 260 260 sub.toLatin1().constData(), 261 isSubScalable ? "scalable" : "not scalable") );261 isSubScalable ? "scalable" : "not scalable"); 262 262 } 263 263
Note:
See TracChangeset
for help on using the changeset viewer.