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:
erik%netscape.com 2001-04-13 21:50:54 +00:00
Родитель 30fc09ba17
Коммит d35342b773
4 изменённых файлов: 9 добавлений и 9 удалений

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

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