diff options
author | Mavridis Philippe <[email protected]> | 2021-06-25 19:18:00 +0300 |
---|---|---|
committer | Mavridis Philippe <[email protected]> | 2021-06-25 21:11:37 +0300 |
commit | 16c650c19e6b8c8f74851939b50402c5e6e4aed2 (patch) | |
tree | aaf92688f84c585c2f5f283ba9717225f0982d71 /src/SUSE2client.cpp | |
parent | 9523b86a5b99317135eb3dcdb7d10199361eab97 (diff) | |
download | twin-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 <[email protected]>
Diffstat (limited to 'src/SUSE2client.cpp')
-rw-r--r-- | src/SUSE2client.cpp | 8 |
1 files changed, 4 insertions, 4 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), |