]> git.saurik.com Git - wxWidgets.git/commitdiff
docstring fixes
authorRobin Dunn <robin@alldunn.com>
Tue, 11 Jul 2006 15:21:05 +0000 (15:21 +0000)
committerRobin Dunn <robin@alldunn.com>
Tue, 11 Jul 2006 15:21:05 +0000 (15:21 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40069 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/src/_pseudodc.i
wxPython/src/_renderer.i
wxPython/src/_sizers.i
wxPython/src/richtext.i

index e2f6710c534760cdc08e0856cf39ec44a00bfe64..bd40ea6768efdfce919909cc7b97a245d40d1a52 100644 (file)
@@ -342,8 +342,10 @@ current text background colour to draw the background (all bits set to
 font, and the current text foreground and background colours.
 
 The coordinates refer to the top-left corner of the rectangle bounding
 font, and the current text foreground and background colours.
 
 The coordinates refer to the top-left corner of the rectangle bounding
-the string. See `GetTextExtent` for how to get the dimensions of a
-text string, which can be used to position the text more precisely.
+the string. See `wx.DC.GetTextExtent` for how to get the dimensions of
+a text string, which can be used to position the text more precisely,
+(you will need to use a real DC with GetTextExtent as wx.PseudoDC does
+not implement it.)
 
 **NOTE**: under wxGTK the current logical function is used by this
 function but it is ignored by wxMSW. Thus, you should avoid using
 
 **NOTE**: under wxGTK the current logical function is used by this
 function but it is ignored by wxMSW. Thus, you should avoid using
@@ -545,9 +547,8 @@ context, and the original palette restored.", "
     DocDeclStr(
         virtual void , SetLogicalFunction(int function),
         "Sets the current logical function for the device context. This
     DocDeclStr(
         virtual void , SetLogicalFunction(int function),
         "Sets the current logical function for the device context. This
-determines how a source pixel (from a pen or brush colour, or source
-device context if using `Blit`) combines with a destination pixel in
-the current device context.
+determines how a source pixel (from a pen or brush colour, combines
+with a destination pixel in the current device context.
 
 The possible values and their meaning in terms of source and
 destination pixel values are as follows:
 
 The possible values and their meaning in terms of source and
 destination pixel values are as follows:
index f95f1ea91602db739f17b51925682f37e1ff548b..3ee0740e0f6ac29ca9e634c688623de46397ddbf 100644 (file)
@@ -243,16 +243,16 @@ The flags parameter may be:
         "Return the generic implementation of the renderer. Under some
 platforms, this is the default renderer implementation, others have
 platform-specific default renderer which can be retrieved by calling
         "Return the generic implementation of the renderer. Under some
 platforms, this is the default renderer implementation, others have
 platform-specific default renderer which can be retrieved by calling
-`GetDefault`.", "");
+`wx.RendererNative.GetDefault`.", "");
     
 
     MustHaveApp(GetDefault);
     DocDeclStr(
         static wxRendererNative& , GetDefault(),
         "Return the default (native) implementation for this platform -- this
     
 
     MustHaveApp(GetDefault);
     DocDeclStr(
         static wxRendererNative& , GetDefault(),
         "Return the default (native) implementation for this platform -- this
-is also the one used by default but this may be changed by calling `Set`
-in which case the return value of this method may be different from
-the return value of `Get`.", "");
+is also the one used by default but this may be changed by calling
+`wx.RendererNative.Set` in which case the return value of this method
+may be different from the return value of `wx.RendererNative.Get`.", "");
     
 
 
     
 
 
index 1157c6a303c99e846f45f13dcd80fafaa4140207..9726d7b4fc245cc2d3ca96f50bfe8ca35c6ec392 100644 (file)
@@ -360,8 +360,8 @@ DocStr(wxSizer,
 "wx.Sizer is the abstract base class used for laying out subwindows in
 a window.  You cannot use wx.Sizer directly; instead, you will have to
 use one of the sizer classes derived from it such as `wx.BoxSizer`,
 "wx.Sizer is the abstract base class used for laying out subwindows in
 a window.  You cannot use wx.Sizer directly; instead, you will have to
 use one of the sizer classes derived from it such as `wx.BoxSizer`,
-`wx.StaticBoxSizer`, `wx.NotebookSizer`, `wx.GridSizer`,  `wx.FlexGridSizer`
-and `wx.GridBagSizer`.
+`wx.StaticBoxSizer`, `wx.GridSizer`, `wx.FlexGridSizer` and
+`wx.GridBagSizer`.
 
 The concept implemented by sizers in wxWidgets is closely related to
 layout tools in other GUI toolkits, such as Java's AWT, the GTK
 
 The concept implemented by sizers in wxWidgets is closely related to
 layout tools in other GUI toolkits, such as Java's AWT, the GTK
index c99edf1ec0dd578ea178c7c480aedaf0974308a8..12c1d69644d0fd986783b8d8919a29d56a932ca1 100644 (file)
@@ -571,7 +571,7 @@ during sizing.", "");
         virtual bool , SaveFile(const wxString& file = wxPyEmptyString,
                                 int type = wxRICHTEXT_TYPE_ANY),
         "Save the contents of the document to the given filename, or if the
         virtual bool , SaveFile(const wxString& file = wxPyEmptyString,
                                 int type = wxRICHTEXT_TYPE_ANY),
         "Save the contents of the document to the given filename, or if the
-empty string is passed then to the filename set with `SetFileName`.", "");
+empty string is passed then to the filename set with `SetFilename`.", "");
 
 
     // sets/clears the dirty flag
 
 
     // sets/clears the dirty flag