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:
parent
aacf27ff74
commit
d34e839f83
|
@ -164,11 +164,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; }
|
||||||
|
|
||||||
//----------------------------------------------------------------------
|
//----------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in New Issue