Replace all occurences of QPalette::Background with QPalette::Window

QPalette::Background is deprecated and gives warning in Qt 5.13
This commit is contained in:
Gaute Lindkvist
2019-12-04 09:46:00 +01:00
parent 62655e17c6
commit 445f28d26f
7 changed files with 8 additions and 8 deletions

View File

@@ -62,7 +62,7 @@ RiuWellAllocationPlot::RiuWellAllocationPlot( RimWellAllocationPlot* plotDefinit
// White background
QPalette pal = this->palette();
pal.setColor( QPalette::Background, Qt::white );
pal.setColor( QPalette::Window, Qt::white );
this->setAutoFillBackground( true );
this->setPalette( pal );