зеркало из https://github.com/mozilla/pjs.git
bug 75066; author=simon@softel.co.il; r=jst; sr=erik; this change addresses
a comment made during the review of 75066 (nsBidiOptions -> PRUint32)
This commit is contained in:
Родитель
30fc09ba17
Коммит
d35342b773
|
@ -448,12 +448,12 @@ public:
|
|||
/**
|
||||
* Set the Bidi options for the presentation context
|
||||
*/
|
||||
NS_IMETHOD SetBidi(nsBidiOptions Source, PRBool aForceReflow = PR_FALSE) = 0;
|
||||
NS_IMETHOD SetBidi(PRUint32 aBidiOptions, PRBool aForceReflow = PR_FALSE) = 0;
|
||||
|
||||
/**
|
||||
* Get the Bidi options for the presentation context
|
||||
*/
|
||||
NS_IMETHOD GetBidi(nsBidiOptions * Dist) = 0;
|
||||
NS_IMETHOD GetBidi(PRUint32* aBidiOptions) = 0;
|
||||
//ahmed
|
||||
|
||||
/**
|
||||
|
|
|
@ -448,12 +448,12 @@ public:
|
|||
/**
|
||||
* Set the Bidi options for the presentation context
|
||||
*/
|
||||
NS_IMETHOD SetBidi(nsBidiOptions Source, PRBool aForceReflow = PR_FALSE) = 0;
|
||||
NS_IMETHOD SetBidi(PRUint32 aBidiOptions, PRBool aForceReflow = PR_FALSE) = 0;
|
||||
|
||||
/**
|
||||
* Get the Bidi options for the presentation context
|
||||
*/
|
||||
NS_IMETHOD GetBidi(nsBidiOptions * Dist) = 0;
|
||||
NS_IMETHOD GetBidi(PRUint32* aBidiOptions) = 0;
|
||||
//ahmed
|
||||
|
||||
/**
|
||||
|
|
|
@ -448,12 +448,12 @@ public:
|
|||
/**
|
||||
* Set the Bidi options for the presentation context
|
||||
*/
|
||||
NS_IMETHOD SetBidi(nsBidiOptions Source, PRBool aForceReflow = PR_FALSE) = 0;
|
||||
NS_IMETHOD SetBidi(PRUint32 aBidiOptions, PRBool aForceReflow = PR_FALSE) = 0;
|
||||
|
||||
/**
|
||||
* Get the Bidi options for the presentation context
|
||||
*/
|
||||
NS_IMETHOD GetBidi(nsBidiOptions * Dist) = 0;
|
||||
NS_IMETHOD GetBidi(PRUint32* aBidiOptions) = 0;
|
||||
//ahmed
|
||||
|
||||
/**
|
||||
|
|
|
@ -182,8 +182,8 @@ public:
|
|||
NS_IMETHOD IsVisualMode(PRBool& aIsVisual) const;
|
||||
NS_IMETHOD SetVisualMode(PRBool aIsVisual);
|
||||
NS_IMETHOD GetBidiUtils(nsBidiPresUtils** aBidiUtils);
|
||||
NS_IMETHOD SetBidi(nsBidiOptions aSource, PRBool aForceReflow = PR_FALSE);
|
||||
NS_IMETHOD GetBidi(nsBidiOptions * aDest);
|
||||
NS_IMETHOD SetBidi(PRUint32 aSource, PRBool aForceReflow = PR_FALSE);
|
||||
NS_IMETHOD GetBidi(PRUint32* aDest);
|
||||
//ahmed
|
||||
NS_IMETHOD IsVisRTL(PRBool &aResult);
|
||||
NS_IMETHOD IsArabicEncoding(PRBool &aResult);
|
||||
|
@ -255,7 +255,7 @@ protected:
|
|||
|
||||
#ifdef IBMBIDI
|
||||
nsBidiPresUtils* mBidiUtils;
|
||||
nsBidiOptions mBidi;
|
||||
PRUint32 mBidi;
|
||||
nsAutoString mCharset; // the charset we are using
|
||||
#endif // IBMBIDI
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче