mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Changes required by previous commit
This commit is contained in:
@@ -23,6 +23,8 @@
|
||||
|
||||
#include "cafAppEnum.h"
|
||||
|
||||
#include <QPaintDevice>
|
||||
|
||||
namespace caf
|
||||
{
|
||||
template <>
|
||||
|
||||
@@ -19,6 +19,7 @@
|
||||
|
||||
#include "RimReservoirCellResultsStorage.h"
|
||||
|
||||
#include "RifReaderEclipseOutput.h"
|
||||
#include "RigActiveCellInfo.h"
|
||||
#include "RigCaseCellResultsData.h"
|
||||
#include "RigCell.h"
|
||||
@@ -36,7 +37,7 @@
|
||||
|
||||
#include "cvfGeometryTools.h"
|
||||
|
||||
#include "RifReaderEclipseOutput.h"
|
||||
#include <QDataStream>
|
||||
#include <QDebug>
|
||||
#include <QDir>
|
||||
#include <QFile>
|
||||
|
||||
@@ -40,6 +40,8 @@
|
||||
#include "qwt_plot_shapeitem.h"
|
||||
#include "qwt_scale_widget.h"
|
||||
|
||||
#include <QIcon>
|
||||
|
||||
#include <vector>
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
|
||||
@@ -98,7 +98,10 @@ IconProvider::~IconProvider()
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
IconProvider::IconProvider( const IconProvider& rhs )
|
||||
{
|
||||
*m_impl = *rhs.m_impl;
|
||||
if ( rhs.m_impl )
|
||||
m_impl = std::make_unique<Impl>( *rhs.m_impl );
|
||||
else
|
||||
m_impl = std::make_unique<Impl>();
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user