- Use vertical layout for Graphviz-generated class inheritance diagrams (to get the old behaviour back, change the rankdir arguments from "TB" to "LR" in the inheritance.py script;

- Do not generate module-level inheritance diagrams anymore;
- Correct a few ReST typos in `newevent.py`, `expando.py` and `buttons`;
- Include a toctree ReST reference to `classic_vs_phoenix.txt` in the `MigrationGuide.txt` document, to stop Sphinx complaining about it.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@72128 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Andrea Gavana
2012-07-17 15:28:20 +00:00
parent dca339e4a0
commit 2037469921
6 changed files with 25 additions and 8 deletions

View File

@@ -785,7 +785,7 @@ class GenBitmapButton(GenButton):
Set the bitmap to display normally.
This is the only one that is required.
If `createOthers` is ``True`, then the other bitmaps will be generated
If `createOthers` is ``True``, then the other bitmaps will be generated
on the fly. Currently, only the disabled bitmap is generated.
:param Bitmap `bitmap`: the bitmap for the normal button appearance.

View File

@@ -92,12 +92,12 @@ Sample usage::
def OnWriteText(self, evt):
self.eom.WriteText("\nThis is a test... Only a test. If this had "
self.eom.WriteText("This is a test... Only a test. If this had "
"been a real emergency you would have seen the "
"quick brown fox jump over the lazy dog.\n")
"quick brown fox jump over the lazy dog.")
def OnAppendText(self, evt):
self.eom.AppendText("\nAppended text.")
self.eom.AppendText("Appended text.")
app = wx.App(0)
frame = MyFrame()

View File

@@ -112,7 +112,9 @@ import wx
def NewEvent():
"""
Generates a new `(event, binder)` tuple::
Generates a new `(event, binder)` tuple.
::
MooEvent, EVT_MOO = NewEvent()
@@ -131,7 +133,9 @@ def NewEvent():
def NewCommandEvent():
"""
Generates a new `(command_event, binder)` tuple::
Generates a new `(command_event, binder)` tuple.
::
MooCmdEvent, EVT_MOO = NewCommandEvent()