Lots more docstring refs fixed

This commit is contained in:
Robin Dunn
2016-07-06 20:20:10 -07:00
parent 98e74b6de9
commit cc3190e240
82 changed files with 1269 additions and 1269 deletions

View File

@@ -51,7 +51,7 @@ an image.
Description
===========
The :class:`ImageDialog` allows the user to view images and select one.
The :class:`wx.ImageDialog` allows the user to view images and select one.
Usage
=====
@@ -98,7 +98,7 @@ def ConvertBMP(file_nm):
:param string `file_nm`: path to file
:return: :class:`Image` or BAD_IMAGE
:return: :class:`wx.Image` or BAD_IMAGE
"""
if file_nm is None:
return None
@@ -426,14 +426,14 @@ class ImagePanel(wx.Panel):
class ImageDialog(wx.Dialog):
"""
:class:`ImageDialog` derived from :class:`Dialog` allows the user
:class:`wx.ImageDialog` derived from :class:`Dialog` allows the user
to display images and to select an image.
"""
def __init__(self, parent, set_dir = None):
"""
Default class constructor.
:param Window `parent`: parent window.
:param wx.Window `parent`: parent window.
:param string `set_dir`: path to set as working directory
"""