Removed C++ style comments from copied code

* components/mozilla/nautilus-mozilla-content-view.c:
	Removed C++ style comments from copied code
This commit is contained in:
Michael Fleming 2001-01-23 01:18:00 +00:00
parent 0084f858f5
commit 8c86f9fd08
2 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2001-01-22 Mike Fleming <mfleming@eazel.com>
* components/mozilla/nautilus-mozilla-content-view.c:
Removed C++ style comments from copied code
2001-01-22 Michael Engber <engber@eazel.com>
reviewed by: Ramiro Estrugo

View file

@ -59,11 +59,11 @@
/* Code-copied from nsGUIEvent.h */
enum nsEventStatus {
/// The event is ignored, do default processing
/* The event is ignored, do default processing */
nsEventStatus_eIgnore,
/// The event is consumed, don't do default processing
/* The event is consumed, don't do default processing */
nsEventStatus_eConsumeNoDefault,
/// The event is consumed, but do default processing
/* The event is consumed, but do default processing */
nsEventStatus_eConsumeDoDefault
};