зеркало из https://github.com/mozilla/pjs.git
Fix for compile error on AIX. Need to define inline functions before calling them. Reviewed by akkana.
This commit is contained in:
Родитель
fa70630a42
Коммит
9a605dffde
|
@ -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)
|
||||
{
|
||||
|
|
Загрузка…
Ссылка в новой задаче