]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/richtext/richtextctrl.h
Corrected the name of EVT_WEB_VIEW_ERROR event table macro.
[wxWidgets.git] / interface / wx / richtext / richtextctrl.h
index 2ffd82930aca86120ea9255cb77e9c5436f43508..74a0af4f77f95934ab5441e3839f894dbdad2716 100644 (file)
@@ -1449,22 +1449,22 @@ public:
     }
 
     /**
-        Returns @true if all of the selection is bold.
+        Returns @true if all of the selection, or the content at the caret position, is bold.
     */
     virtual bool IsSelectionBold();
 
     /**
-        Returns @true if all of the selection is italic.
+        Returns @true if all of the selection, or the content at the caret position, is italic.
     */
     virtual bool IsSelectionItalics();
 
     /**
-        Returns @true if all of the selection is underlined.
+        Returns @true if all of the selection, or the content at the caret position, is underlined.
     */
     virtual bool IsSelectionUnderlined();
 
     /**
-        Returns @true if all of the selection, or the current caret position, has the supplied wxTextAttrEffects flag(s).
+        Returns @true if all of the selection, or the content at the current caret position, has the supplied wxTextAttrEffects flag(s).
     */
     virtual bool DoesSelectionHaveTextEffectFlag(int flag);
 
@@ -1474,28 +1474,28 @@ public:
     virtual bool IsSelectionAligned(wxTextAttrAlignment alignment);
 
     /**
-        Apples bold to the selection (undoable).
+        Apples bold to the selection or the default style (undoable).
     */
     virtual bool ApplyBoldToSelection();
 
     /**
-        Applies italic to the selection (undoable).
+        Applies italic to the selection or the default style (undoable).
     */
     virtual bool ApplyItalicToSelection();
 
     /**
-        Applies underline to the selection (undoable).
+        Applies underline to the selection or the default style (undoable).
     */
     virtual bool ApplyUnderlineToSelection();
 
     /**
         Applies one or more wxTextAttrEffects flags to the selection (undoable).
-        If there's no selection, it's applied to the current caret position
+        If there is no selection, it is applied to the default style.
     */
     virtual bool ApplyTextEffectToSelection(int flags);
 
     /**
-        Applies the given alignment to the selection (undoable).
+        Applies the given alignment to the selection or the default style (undoable).
         For alignment values, see wxTextAttr.
     */
     virtual bool ApplyAlignmentToSelection(wxTextAttrAlignment alignment);