Skip to content

Commit

Permalink
Changes required by previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
magnesj committed Feb 17, 2024
1 parent 8bf5ea0 commit 99e4f09
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
2 changes: 2 additions & 0 deletions ApplicationLibCode/Application/RiaPlotDefines.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@

#include "cafAppEnum.h"

#include <QPaintDevice>

namespace caf
{
template <>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

#include "RimReservoirCellResultsStorage.h"

#include "RifReaderEclipseOutput.h"
#include "RigActiveCellInfo.h"
#include "RigCaseCellResultsData.h"
#include "RigCell.h"
Expand All @@ -36,7 +37,7 @@

#include "cvfGeometryTools.h"

#include "RifReaderEclipseOutput.h"
#include <QDataStream>
#include <QDebug>
#include <QDir>
#include <QFile>
Expand Down
2 changes: 2 additions & 0 deletions ApplicationLibCode/UserInterface/RiuQwtPlotTools.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@
#include "qwt_plot_shapeitem.h"
#include "qwt_scale_widget.h"

#include <QIcon>

#include <vector>

//--------------------------------------------------------------------------------------------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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>();
}

//--------------------------------------------------------------------------------------------------
Expand Down

0 comments on commit 99e4f09

Please sign in to comment.