mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#4683 clang-format on all files in ApplicationCode
This commit is contained in:
@@ -3,17 +3,17 @@
|
||||
// Copyright (C) 2011- Statoil ASA
|
||||
// Copyright (C) 2013- Ceetron Solutions AS
|
||||
// Copyright (C) 2011-2012 Ceetron AS
|
||||
//
|
||||
//
|
||||
// ResInsight is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
//
|
||||
// ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
// FITNESS FOR A PARTICULAR PURPOSE.
|
||||
//
|
||||
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
||||
//
|
||||
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
||||
// for more details.
|
||||
//
|
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
@@ -24,21 +24,21 @@
|
||||
|
||||
#include <QFileInfo>
|
||||
|
||||
CAF_PDM_SOURCE_INIT(RimEclipseInputPropertyCollection, "RimInputPropertyCollection");
|
||||
CAF_PDM_SOURCE_INIT( RimEclipseInputPropertyCollection, "RimInputPropertyCollection" );
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RimEclipseInputPropertyCollection::RimEclipseInputPropertyCollection()
|
||||
{
|
||||
CAF_PDM_InitObject("Input Properties", ":/EclipseInput48x48.png", "", "");
|
||||
CAF_PDM_InitObject( "Input Properties", ":/EclipseInput48x48.png", "", "" );
|
||||
|
||||
CAF_PDM_InitFieldNoDefault(&inputProperties, "InputProperties", "", "", "", "");
|
||||
inputProperties.uiCapability()->setUiHidden(true);
|
||||
CAF_PDM_InitFieldNoDefault( &inputProperties, "InputProperties", "", "", "", "" );
|
||||
inputProperties.uiCapability()->setUiHidden( true );
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RimEclipseInputPropertyCollection::~RimEclipseInputPropertyCollection()
|
||||
{
|
||||
@@ -48,16 +48,16 @@ RimEclipseInputPropertyCollection::~RimEclipseInputPropertyCollection()
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
/// Returns the InputProperties pointing to the same file as \a fileName
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
std::vector<RimEclipseInputProperty*> RimEclipseInputPropertyCollection::findInputProperties(QString fileName)
|
||||
std::vector<RimEclipseInputProperty*> RimEclipseInputPropertyCollection::findInputProperties( QString fileName )
|
||||
{
|
||||
QFileInfo fileInfo(fileName);
|
||||
QFileInfo fileInfo( fileName );
|
||||
std::vector<RimEclipseInputProperty*> result;
|
||||
for (size_t i = 0; i < this->inputProperties.size(); ++i)
|
||||
for ( size_t i = 0; i < this->inputProperties.size(); ++i )
|
||||
{
|
||||
if (!inputProperties[i]) continue;
|
||||
if ( !inputProperties[i] ) continue;
|
||||
|
||||
QFileInfo propFile(inputProperties[i]->fileName());
|
||||
if (fileInfo == propFile) result.push_back(inputProperties[i]);
|
||||
QFileInfo propFile( inputProperties[i]->fileName() );
|
||||
if ( fileInfo == propFile ) result.push_back( inputProperties[i] );
|
||||
}
|
||||
|
||||
return result;
|
||||
@@ -66,11 +66,11 @@ std::vector<RimEclipseInputProperty*> RimEclipseInputPropertyCollection::findInp
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
/// Returns the InputProperty with resultName \a resultName
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RimEclipseInputProperty * RimEclipseInputPropertyCollection::findInputProperty(QString resultName)
|
||||
RimEclipseInputProperty* RimEclipseInputPropertyCollection::findInputProperty( QString resultName )
|
||||
{
|
||||
for (size_t i = 0; i < this->inputProperties.size(); i++)
|
||||
for ( size_t i = 0; i < this->inputProperties.size(); i++ )
|
||||
{
|
||||
if (inputProperties[i] && inputProperties[i]->resultName() == resultName)
|
||||
if ( inputProperties[i] && inputProperties[i]->resultName() == resultName )
|
||||
{
|
||||
return inputProperties[i];
|
||||
}
|
||||
@@ -78,4 +78,3 @@ RimEclipseInputProperty * RimEclipseInputPropertyCollection::findInputProperty(Q
|
||||
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user