Closed
Bug 2368
Opened 26 years ago
Closed 26 years ago
[patch] C++ comments in modules/libpref/src/prefapi.c
Categories
(Core Graveyard :: Plug-ins, defect, P2)
Tracking
(Not tracked)
VERIFIED
FIXED
People
(Reporter: tor, Assigned: hshaw)
Details
Remove C++ comments in a C file.
RCS file: /cvsroot/mozilla/modules/libpref/src/prefapi.c,v
retrieving revision 3.10
diff -u -r3.10 prefapi.c
--- prefapi.c 1999/01/13 02:32:09 3.10
+++ prefapi.c 1999/01/14 21:37:44
@@ -1015,7 +1015,7 @@
PR_IMPLEMENT(PrefResult)
PREF_SavePrefFile()
{
-#if 0// defined(XP_MAC) || defined(XP_PC)
+#if 0 /* defined(XP_MAC) || defined(XP_PC) */
return (PrefResult)pref_SaveProfile();
#else
if (!m_HashTable)
@@ -2196,7 +2196,7 @@
}
/* !! Front ends need to implement */
-#ifndef XP_MAC // see macpref.cp
+#ifndef XP_MAC /* see macpref.cp */
PR_IMPLEMENT(PRBool)
PREF_IsAutoAdminEnabled()
{
Updated•26 years ago
|
Assignee: amusil → hshaw
Comment 1•26 years ago
|
||
Not a plugin bug...reassigning to Hubie
Assignee | ||
Updated•26 years ago
|
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 2•26 years ago
|
||
fixed, removed c++ comments.
thanks for the patch.
Assignee | ||
Updated•26 years ago
|
Status: RESOLVED → VERIFIED
Assignee | ||
Comment 4•26 years ago
|
||
I'll mark this a verified since it is a pretty simple
change, but in general it makes more sense for a third
party to verify these fixes since the developer could
end up being biased.
Updated•2 years ago
|
Product: Core → Core Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•