back again, snapshot has already changes in kdeui

svn path=/trunk/KDE/kdebase/konsole/; revision=506933
This commit is contained in:
Joseph Wenninger
2006-02-07 21:55:56 +00:00
parent de158a768e
commit 2f7c2ef906
3 changed files with 9 additions and 9 deletions

View File

@@ -230,7 +230,7 @@
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minValue">
<property name="minimum">
<number>1</number>
</property>
</widget>
@@ -246,10 +246,10 @@
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minValue">
<property name="minimum">
<number>0</number>
</property>
<property name="maxValue">
<property name="maximum">
<number>8</number>
</property>
</widget>

View File

@@ -200,9 +200,9 @@ void SchemaEditor::previewLoaded(bool l)
if (l) {
QMatrix mat;
pix =
spix->transformed(mat.
scale(180.0 / spix->QPixmap::width(),
100.0 / spix->QPixmap::height()));
spix->pixmap().transformed(mat.
scale(180.0 / spix->pixmap().width(),
100.0 / spix->pixmap().height()));
kDebug(0) << "Loaded" << endl;
loaded = true;
if (transparencyCheck->isChecked()) {

View File

@@ -25,9 +25,9 @@
#include <kapplication.h>
#include <qwidget.h>
//Added by qt3to4:
#include <QPixmap>
#include <kpixmap.h>
#include <QVector>
class QPixmap;
class KPixmap;
class KSharedPixmap;
#include "schemadialog.h"
@@ -71,7 +71,7 @@ class SchemaEditor : public SchemaDialog
QVector<int> type; // 0= custom, 1= sysfg, 2=sysbg, 3=rcolor
QVector<bool> transparent;
QVector<bool> bold;
QPixmap pix;
KPixmap pix;
KSharedPixmap *spix;
QString defaultSchema;
bool loaded;