Merge pull request #42 from grendello/fspinbox-inlines

Make FSPinBox::get{Prefix,Suffix} functions inline
This commit is contained in:
Markus Gans 2019-12-16 11:47:48 +01:00 committed by GitHub
commit 867dabf637
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -169,11 +169,11 @@ inline sInt64 FSpinBox::getValue()
{ return value; } { return value; }
//---------------------------------------------------------------------- //----------------------------------------------------------------------
FString FSpinBox::getPrefix() const inline FString FSpinBox::getPrefix() const
{ return pfix; } { return pfix; }
//---------------------------------------------------------------------- //----------------------------------------------------------------------
FString FSpinBox::getSuffix() const inline FString FSpinBox::getSuffix() const
{ return sfix; } { return sfix; }
//---------------------------------------------------------------------- //----------------------------------------------------------------------