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
Родитель fa70630a42
Коммит 9a605dffde
2 изменённых файлов: 14 добавлений и 14 удалений

Просмотреть файл

@ -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)
{

Просмотреть файл

@ -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)
{