/branches/Version13x/Scribus/scribus/libabout/about.cpp |
---|
65,7 → 65,7 |
tabLayout1->addWidget( pixmapLabel1 ); |
buildID = new QLabel( tab, "BB" ); |
buildID->setAlignment(Qt::AlignCenter); |
QString bu = tr("%1. %2 %3 ").arg("31").arg("January").arg("2005"); |
QString bu = tr("%1. %2 %3 ").arg("1").arg("February").arg("2005"); |
#ifdef HAVE_CMS |
bu += "C"; |
#else |
/branches/Version13x/Scribus/scribus/scribus.cpp |
---|
3397,6 → 3397,17 |
Prefs.GFontSub[itfsu.key()] = dia->tabFonts->FlagsRepl.at(a)->currentText(); |
a++; |
} |
QStringList uf = doc->UsedFonts.keys(); |
QMap<QString,QFont>::Iterator it3; |
for (it3 = doc->UsedFonts.begin(); it3 != doc->UsedFonts.end(); ++it3) |
{ |
FT_Done_Face(doc->FFonts[it3.key()]); |
} |
QStringList::Iterator it3a; |
for (it3a = uf.begin(); it3a != uf.end(); ++it3a) |
{ |
doc->AddFont((*it3a), Prefs.AvailFonts[(*it3a)]->Font); |
} |
FontSub->RebuildList(&Prefs, doc); |
Mpal->Fonts->RebuildList(&Prefs, doc); |
doc->PDF_Optionen.Thumbnails = dia->tabPDF->CheckBox1->isChecked(); |
/branches/Version13x/Scribus/scribus/fontprefs.cpp |
---|
371,6 → 371,7 |
} |
UsedFonts.clear(); |
fontFlags.clear(); |
fontList->clear(); |
SCFontsIterator it(Prefs->AvailFonts); |
for ( ; it.current(); ++it) |
{ |
401,7 → 402,6 |
} |
QFileInfo fi = QFileInfo(it.current()->Datei); |
QString ext = fi.extension(false).lower(); |
row->setText(3, tr("Yes")); |
if (ext == "otf") |
foS.FlagOTF = true; |
else |