Fix for compile error on AIX. Need to define inline functions before calling them. Reviewed by akkana.

This commit is contained in:
bruce%cybersight.com 1999-04-13 02:28:11 +00:00
parent 66729caa47
commit f872183b94
2 changed files with 14 additions and 14 deletions

View File

@ -75,13 +75,6 @@ protected:
#define NS_TYPEINSTATE_FONTSIZE 0x00000020
/* ----- inline method definitions ----- */
inline
TypeInState::TypeInState()
{
NS_INIT_REFCNT();
Reset();
};
inline
void TypeInState::Reset()
{
@ -93,6 +86,13 @@ void TypeInState::Reset()
mIsSet = 0;
};
inline
TypeInState::TypeInState()
{
NS_INIT_REFCNT();
Reset();
};
inline
PRBool TypeInState::IsSet(PRUint32 aStyle)
{

View File

@ -75,13 +75,6 @@ protected:
#define NS_TYPEINSTATE_FONTSIZE 0x00000020
/* ----- inline method definitions ----- */
inline
TypeInState::TypeInState()
{
NS_INIT_REFCNT();
Reset();
};
inline
void TypeInState::Reset()
{
@ -93,6 +86,13 @@ void TypeInState::Reset()
mIsSet = 0;
};
inline
TypeInState::TypeInState()
{
NS_INIT_REFCNT();
Reset();
};
inline
PRBool TypeInState::IsSet(PRUint32 aStyle)
{