summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMavridis Philippe <mavridisf@gmail.com>2021-06-25 19:18:00 +0300
committerMavridis Philippe <mavridisf@gmail.com>2021-06-25 21:11:37 +0300
commit16c650c19e6b8c8f74851939b50402c5e6e4aed2 (patch)
treeaaf92688f84c585c2f5f283ba9717225f0982d71
parent9523b86a5b99317135eb3dcdb7d10199361eab97 (diff)
downloadtwin-style-suse2-16c650c19e6b8c8f74851939b50402c5e6e4aed2.tar.gz
twin-style-suse2-16c650c19e6b8c8f74851939b50402c5e6e4aed2.zip
Fixed FTBFS caused by some direct TQt classes constructor usage
Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
-rw-r--r--src/SUSE2client.cpp8
-rw-r--r--src/config/config.cpp6
2 files changed, 7 insertions, 7 deletions
diff --git a/src/SUSE2client.cpp b/src/SUSE2client.cpp
index a3a7f87..da91319 100644
--- a/src/SUSE2client.cpp
+++ b/src/SUSE2client.cpp
@@ -653,11 +653,11 @@ void SUSE2Client::create_pixmaps()
painter.end();
TQImage aTempImage = aTitleBarTile->convertToImage();
- aGradientBottom = TQColor::TQColor(aTempImage.pixel(0, aTempImage.height()-1));
- aAntialiasBase = TQColor::TQColor(aTempImage.pixel(0, 2));
+ aGradientBottom = TQColor(aTempImage.pixel(0, aTempImage.height()-1));
+ aAntialiasBase = TQColor(aTempImage.pixel(0, 2));
TQImage iTempImage = iTitleBarTile->convertToImage();
- iGradientBottom = TQColor::TQColor(iTempImage.pixel(0, iTempImage.height()-1));
- iAntialiasBase = TQColor::TQColor(iTempImage.pixel(0, 2));
+ iGradientBottom = TQColor(iTempImage.pixel(0, iTempImage.height()-1));
+ iAntialiasBase = TQColor(iTempImage.pixel(0, 2));
// the gradient for the fade out effect
gradient = KImageEffect::gradient(TQSize(30, titleHeight + TOPMARGIN + DECOHEIGHT),
diff --git a/src/config/config.cpp b/src/config/config.cpp
index d0a72bf..6e47ff9 100644
--- a/src/config/config.cpp
+++ b/src/config/config.cpp
@@ -174,7 +174,7 @@ void SUSE2Config::load(TDEConfig *)
TQString titleBarImage = locate("data", "twin/pics/titlebar_decor.png");
titlebarLogoURL = m_config->readEntry("TitleBarLogoURL", titleBarImage);
- TQImage tmpLogo = TQImage::TQImage(titlebarLogoURL);
+ TQImage tmpLogo(titlebarLogoURL);
m_dialog->logoImage->setPixmap(TQPixmap(tmpLogo.smoothScale(120, 20, TQImage::ScaleMin)));
}
@@ -238,7 +238,7 @@ void SUSE2Config::defaults()
m_dialog->titleBarLogo->setChecked(false);
m_dialog->titleBarLogoOffset->setValue(3);
titlebarLogoURL = locate("data", "twin/pics/titlebar_decor.png");
- TQImage tmpLogo = TQImage::TQImage(titlebarLogoURL);
+ TQImage tmpLogo(titlebarLogoURL);
m_dialog->logoImage->setPixmap(TQPixmap(tmpLogo.smoothScale(120, 20, TQImage::ScaleMin)));
}
@@ -262,7 +262,7 @@ void SUSE2Config::selectImage()
KFileItem tmpFileItem = KFileItem(KFileItem::Unknown, KFileItem::Unknown, logoURL);
if (!logoURL.isEmpty() && tmpFileItem.isFile() && tmpFileItem.isReadable()) {
titlebarLogoURL = logoURL.path();
- TQImage tmpLogo = TQImage::TQImage(titlebarLogoURL);
+ TQImage tmpLogo(titlebarLogoURL);
m_dialog->logoImage->setPixmap(TQPixmap(tmpLogo.smoothScale(120, 20, TQImage::ScaleMin)));
emit changed();
}