r14834 by subik - fix pixmapexport type

scribus-commit scribus-commit at lists.scribus.net
Sat Feb 27 08:50:20 CET 2010


Revision: 14834
Author: subik
Date: 2010-02-27T07:41:15.293810Z
Commit message: fix pixmapexport type

Changeset: 
M  /branches/Version135/Scribus/scribus/plugins/pixmapexport/dialog.cpp

Diffs:
Index: scribus/plugins/pixmapexport/dialog.cpp
===================================================================
--- scribus/plugins/pixmapexport/dialog.cpp	(revision 14833)
+++ scribus/plugins/pixmapexport/dialog.cpp	(revision 14834)
@@ -32,7 +32,7 @@
 	QDirModel * dirModel = new QDirModel(this);
 	dirModel->setFilter(QDir::AllDirs);
 	outputDirectory->setCompleter(new QCompleter(dirModel, this));
-	
+
 	outputDirectory->setText( QDir::convertSeparators(prefs->get("wdir", QDir::currentPath())) );
 	QList<QByteArray> imgs = QImageWriter::supportedImageFormats();
 	for (int a = 0; a < imgs.count(); a++)
@@ -42,7 +42,7 @@
 	setCurrentComboItem(bitmapType, type.toLower());
 	qualityBox->setValue(quality);
 	qualityBox->setWrapping(true);
-	
+
 	DPIBox->setValue(size);
 	enlargementBox->setValue(size);
 	onePageRadio->setChecked( true );
@@ -53,7 +53,7 @@
 	languageChange();
 	readConfig();
 	computeSize();
-	
+
 	connect(outputDirectoryButton, SIGNAL(clicked()), this, SLOT(OutputDirectoryButton_pressed()));
 	connect(intervalPagesRadio, SIGNAL(clicked()), this, SLOT(IntervalPagesRadio_stateChanged()));
 	connect(allPagesRadio, SIGNAL(clicked()), this, SLOT(AllPagesRadio_stateChanged()));
@@ -132,7 +132,7 @@
 {
 	DPIBox->setValue(prefs->getUInt("DPIBox", 72));
 	enlargementBox->setValue(prefs->getInt("EnlargementBox", 100));
-	qualityBox->setValue(prefs->getUInt("QualityBox", -1));
+	qualityBox->setValue(prefs->getInt("QualityBox", -1));
 	int b = prefs->getUInt("ButtonGroup1", 0);
 	switch (b)
 	{




More information about the scribus-commit mailing list