mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-03-03 07:01:19 +00:00
Use enum trick to get around VC++ braindead-ness wrt. 'const PRUin32'.
This commit is contained in:
parent
f32fdfd744
commit
9479c899ab
@ -208,9 +208,11 @@ public:
|
||||
/**
|
||||
* Output methods flags:
|
||||
*/
|
||||
const PRUint32 EditorOutputSelectionOnly = 1;
|
||||
const PRUint32 EditorOutputFormatted = 2;
|
||||
const PRUint32 EditorOutputNoDoctype = 4;
|
||||
enum {
|
||||
EditorOutputSelectionOnly = 1,
|
||||
EditorOutputFormatted = 2,
|
||||
EditorOutputNoDoctype = 4
|
||||
};
|
||||
|
||||
/**
|
||||
* Output methods:
|
||||
|
Loading…
x
Reference in New Issue
Block a user