Changeset 130 in tspsg-svn
- Timestamp:
- Sep 3, 2010, 5:34:21 PM (14 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/main.cpp
r129 r130 53 53 qsrand(QDateTime::currentDateTime().toTime_t() ^ QCursor::pos().x() ^ QCursor::pos().y()); 54 54 55 QFontDatabase::addApplicationFont(":/files/DejaVuLGCSansMono.ttf"); 55 // Don't load the font if it is already available 56 if (!QFontDatabase().families().contains(DEF_FONT_FACE)) 57 QFontDatabase::addApplicationFont(":/files/DejaVuLGCSansMono.ttf"); 56 58 57 59 QTranslator en; -
trunk/src/mainwindow.cpp
r129 r130 501 501 "Country flag icons used in %1 are part of the free " 502 502 "<b>Flag Icons</b> collection created by <b>IconDrawer</b>,<br>\n" 503 "see <a href=\"http://www.icondrawer.com/\">www.icondrawer.com</a>") 503 "see <a href=\"http://www.icondrawer.com/\">www.icondrawer.com</a><br>\n" 504 "<br>\n" 505 "%1 comes with the default \"embedded\" font <b>DejaVu LGC Sans " 506 "Mono</b> from the <b>DejaVu fonts</b> licensed under a Free license</a>,<br>\n" 507 "see <a href=\"http://dejavu-fonts.org/\">dejavu-fonts.org</a>.") 504 508 .arg(QApplication::applicationName()); 505 509
Note: See TracChangeset
for help on using the changeset viewer.