Fixed a compiler warning where there was an extra ',' after an enum

identifier


git-svn-id: svn://10.0.0.236/trunk@16651 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
troy%netscape.com 1998-12-18 05:46:00 +00:00
parent 0985cec450
commit c20c8a8180
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ class nsIPresContext;
*/
enum nsPrintStatus {
ePrintStatus_StartPage, // beginning the specified page
ePrintStatus_EndPage, // finished with the specified page
ePrintStatus_EndPage // finished with the specified page
};
/**

View File

@ -42,7 +42,7 @@ class nsIPresContext;
*/
enum nsPrintStatus {
ePrintStatus_StartPage, // beginning the specified page
ePrintStatus_EndPage, // finished with the specified page
ePrintStatus_EndPage // finished with the specified page
};
/**