mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#5101 clang-format: Allow short functions on a single line
Use AllowShortFunctionsOnASingleLine: InlineOnly
This commit is contained in:
@@ -80,7 +80,9 @@ RivWindowEdgeAxesOverlayItem::RivWindowEdgeAxesOverlayItem( Font* font )
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RivWindowEdgeAxesOverlayItem::~RivWindowEdgeAxesOverlayItem() {}
|
||||
RivWindowEdgeAxesOverlayItem::~RivWindowEdgeAxesOverlayItem()
|
||||
{
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
|
||||
@@ -101,14 +101,8 @@ public:
|
||||
void setFrameColor( const Color4f& frameColor );
|
||||
void setDomainAxes( DomainAxes axes );
|
||||
void setIsSwitchingYAxisSign( bool switchSign );
|
||||
int frameBorderWidth()
|
||||
{
|
||||
return static_cast<int>( m_frameBorderWidth );
|
||||
}
|
||||
int frameBorderHeight()
|
||||
{
|
||||
return static_cast<int>( m_frameBorderHeight );
|
||||
}
|
||||
int frameBorderWidth() { return static_cast<int>( m_frameBorderWidth ); }
|
||||
int frameBorderHeight() { return static_cast<int>( m_frameBorderHeight ); }
|
||||
|
||||
void setShowAxisLines( bool showAxisLines );
|
||||
|
||||
|
||||
Reference in New Issue
Block a user