]> git.saurik.com Git - wxWidgets.git/commitdiff
Minor doc corrections for [q-r] in ticket #9581 (most of the patch was applied alread...
authorBryan Petty <bryan@ibaku.net>
Sat, 21 Jun 2008 05:53:53 +0000 (05:53 +0000)
committerBryan Petty <bryan@ibaku.net>
Sat, 21 Jun 2008 05:53:53 +0000 (05:53 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@54311 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/msw/registry.h
interface/recguard.h
interface/regex.h

index dfb7835f13419eb17a89f8e21849536c8b41d379..6937ac4b4507a07c16a48c5a1179ee8c6bfaf2e6 100644 (file)
     The Windows registry is easy to understand. There are five registry keys,
     namely:
 
-    @li HKEY_CLASSES_ROOT (HKCR)
-    @li HKEY_CURRENT_USER (HKCU)
-    @li HKEY_LOCAL_MACHINE (HKLM)
-    @li HKEY_CURRENT_CONFIG (HKCC)
-    @li HKEY_USERS (HKU)
+    @li @c HKEY_CLASSES_ROOT (HKCR)
+    @li @c HKEY_CURRENT_USER (HKCU)
+    @li @c HKEY_LOCAL_MACHINE (HKLM)
+    @li @c HKEY_CURRENT_CONFIG (HKCC)
+    @li @c HKEY_USERS (HKU)
 
     After creating a key, it can hold a value. The values can be:
 
@@ -70,7 +70,7 @@ class wxRegKey
 {
 public:
     /**
-        Default constructor, initializes to HKCR.
+        Default constructor, initializes to @c HKEY_CLASSES_ROOT.
     */
     wxRegKey();
     /**
index 748fcc7608e12be2e658596377d5337213b74f57..d646798f41b46da40f8d0797af807ae05e37eb15 100644 (file)
@@ -19,7 +19,7 @@
     would never be detected.
 
     @library{wxbase}
-    @category{FIXME}
+    @category{misc}
 */
 class wxRecursionGuardFlag
 {
@@ -65,7 +65,7 @@ public:
     way (for example because an exception has been thrown).
 
     @library{wxbase}
-    @category{FIXME}
+    @category{misc}
 */
 class wxRecursionGuard
 {
index 81db78f274a5c1c1b3251b12615c777a47136eff..a61eaf28a4a0d757fc670bac32e391b618942b86 100644 (file)
@@ -9,7 +9,7 @@
 /**
     @anchor wxRE_FLAGS
 
-    Flags for regex compilation to be used with Compile().
+    Flags for regex compilation to be used with wxRegEx::Compile().
 */
 enum
 {
@@ -42,9 +42,9 @@ enum
 /**
     @anchor wxRE_NOT_FLAGS
 
-    Flags for regex matching to be used with Matches().
+    Flags for regex matching to be used with wxRegEx::Matches().
     These flags are mainly useful when doing several matches in a long string
-    to prevent erroneous matches for ¡¯¡¯ and ¡¯$¡¯:
+    to prevent erroneous matches for '^' and '$':
 */
 enum
 {