Make FSPinBox::get{Prefix,Suffix} functions inline

Otherwise, if more than one file includes the header, we will have
duplicate symbols during link time.
This commit is contained in:
Marek Habersack 2019-12-15 20:32:36 +01:00
parent aacf27ff74
commit d34e839f83
1 changed files with 2 additions and 2 deletions

View File

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