mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Fixes by clang-tidy
This commit is contained in:
parent
d23c6b4bb6
commit
71a418dc78
@ -166,7 +166,7 @@ void RimSummaryTable::cleanupBeforeClose()
|
|||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
void RimSummaryTable::fieldChangedByUi( const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue )
|
void RimSummaryTable::fieldChangedByUi( const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue )
|
||||||
{
|
{
|
||||||
RimViewWindow::fieldChangedByUi( changedField, oldValue, newValue );
|
RimPlotWindow::fieldChangedByUi( changedField, oldValue, newValue );
|
||||||
|
|
||||||
if ( changedField == &m_case )
|
if ( changedField == &m_case )
|
||||||
{
|
{
|
||||||
|
@ -52,7 +52,7 @@ public:
|
|||||||
RifEclipseSummaryAddress::SummaryVarCategory category,
|
RifEclipseSummaryAddress::SummaryVarCategory category,
|
||||||
const QString& vectorName );
|
const QString& vectorName );
|
||||||
void setDescription( const QString& description );
|
void setDescription( const QString& description );
|
||||||
virtual QString description() const override;
|
QString description() const override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void cleanupBeforeClose();
|
void cleanupBeforeClose();
|
||||||
@ -65,14 +65,14 @@ private:
|
|||||||
QList<caf::PdmOptionItemInfo> calculateValueOptions( const caf::PdmFieldHandle* fieldNeedingOptions ) override;
|
QList<caf::PdmOptionItemInfo> calculateValueOptions( const caf::PdmFieldHandle* fieldNeedingOptions ) override;
|
||||||
|
|
||||||
// Inherited via RimPlotWindow
|
// Inherited via RimPlotWindow
|
||||||
virtual void doRenderWindowContent( QPaintDevice* paintDevice ) override;
|
void doRenderWindowContent( QPaintDevice* paintDevice ) override;
|
||||||
|
|
||||||
// Inherited via RimViewWindow
|
// Inherited via RimViewWindow
|
||||||
virtual QWidget* viewWidget() override;
|
QWidget* viewWidget() override;
|
||||||
virtual QImage snapshotWindowContent() override;
|
QImage snapshotWindowContent() override;
|
||||||
virtual void zoomAll() override;
|
void zoomAll() override;
|
||||||
virtual QWidget* createViewWidget( QWidget* mainWindowParent ) override;
|
QWidget* createViewWidget( QWidget* mainWindowParent ) override;
|
||||||
virtual void deleteViewWidget() override;
|
void deleteViewWidget() override;
|
||||||
|
|
||||||
// PDM methods
|
// PDM methods
|
||||||
caf::PdmFieldHandle* userDescriptionField() override;
|
caf::PdmFieldHandle* userDescriptionField() override;
|
||||||
|
Loading…
Reference in New Issue
Block a user