docstring update

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32919 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2005-03-19 21:55:11 +00:00
parent 4fee07f2ff
commit f1e759d755
2 changed files with 7 additions and 3 deletions

View File

@@ -145,7 +145,7 @@ added, if needed.", "");
DocStr(SetRatio,
"Set the ratio item attribute.", "");
%Rename(SetRatioWH, void, SetRatio( int width, int height ));
%Rename(SetRatioSize, void, SetRatio( wxSize size ));
%Rename(SetRatioSize, void, SetRatio( const wxSize& size ));
void SetRatio( float ratio );
DocDeclStr(
@@ -926,7 +926,7 @@ the item.", "");
%pythoncode {
def Hide(self, item, recursive=False):
"""
A convenience method for Show(item, False, recursive).
A convenience method for `Show`(item, False, recursive).
"""
return self.Show(item, False, recursive)
}
@@ -936,6 +936,10 @@ the item.", "");
void , ShowItems(bool show),
"Recursively call `wx.SizerItem.Show` on all sizer items.", "");
// TODO:
// void Show(bool show);
// bool IsShown();
};

View File

@@ -276,7 +276,7 @@ showing the top-level window.", "");
DocDeclStr(
void , SetSashSize(int width),
"Sets the sash size. Currently a NOP.", "");
"Sets the sash size.", "");
DocDeclStr(