replace deprecated functions

svn path=/trunk/KDE/kdebase/workspace/; revision=564035
icc-effect-5.14.5
Stephan Kulow 2006-07-19 06:49:37 +00:00
parent f3e320d5a4
commit 816cf2a2e9
4 changed files with 5 additions and 6 deletions

View File

@ -286,7 +286,7 @@ void LaptopButton::reset(unsigned long changed)
void LaptopButton::setBitmap(const unsigned char *bitmap)
{
if (bitmap)
deco = QBitmap(8, 8, bitmap, true);
deco = QBitmap::fromData( QSize(8, 8), bitmap);
else {
deco = QBitmap(8,8);
deco.fill(Qt::color0);

View File

@ -294,8 +294,7 @@ ModernButton::ModernButton(ButtonType type, ModernSys *parent, const char *name)
setObjectName( name );
setAttribute(Qt::WA_NoSystemBackground, true);
QBitmap mask(14, 15, QPixmap::defaultDepth() > 8 ?
btnhighcolor_mask_bits : lowcolor_mask_bits, true);
QBitmap mask = QBitmap::fromData( QSize(14, 15), QPixmap::defaultDepth() > 8 ? btnhighcolor_mask_bits : lowcolor_mask_bits);
resize(14, 15);
setMask(mask);
@ -344,7 +343,7 @@ void ModernButton::reset(unsigned long changed)
void ModernButton::setBitmap(const unsigned char *bitmap)
{
if (bitmap)
deco = QBitmap(8, 8, bitmap, true);
deco = QBitmap::fromData( QSize(8, 8), bitmap);
else {
deco = QBitmap(8,8);
deco.fill(Qt::color0);

View File

@ -288,7 +288,7 @@ void RedmondButton::setBitmap(const unsigned char *bitmap)
pix = QPixmap();
if (bitmap)
deco = QBitmap(10, 10, bitmap, true);
deco = QBitmap::fromData( QSize(10, 10), bitmap);
else {
deco = QBitmap(10,10);
deco.fill(Qt::color0);

View File

@ -283,7 +283,7 @@ WebButton::drawButton(QPainter *p)
WebButton::setBitmap(const unsigned char *bitmap)
{
if (bitmap)
bitmap_ = QBitmap(8,8, bitmap, true);
bitmap_ = QBitmap::fromData( QSize(8, 8), bitmap);
else
bitmap_ = QBitmap(8,8);
bitmap_.setMask(bitmap_);