diff --git a/docs/doxygen/overviews/python.h b/docs/doxygen/overviews/python.h index cc3b132a36..ff254298c2 100644 --- a/docs/doxygen/overviews/python.h +++ b/docs/doxygen/overviews/python.h @@ -76,7 +76,7 @@ There are other GUI solutions out there for Python. Tkinter is the de facto standard GUI for Python. It is available on nearly every platform that Python and Tcl/TK are. Why Tcl/Tk? Well because Tkinter is -just a wrapper around Tcl's GUI toolkit, Tk. This has it's upsides and it's +just a wrapper around Tcl's GUI toolkit, Tk. This has its upsides and its downsides... The upside is that Tk is a pretty versatile toolkit. It can be made to do a lot diff --git a/include/wx/generic/splitter.h b/include/wx/generic/splitter.h index ad240355fe..ff6b1efaec 100644 --- a/include/wx/generic/splitter.h +++ b/include/wx/generic/splitter.h @@ -105,7 +105,7 @@ public: // and changing the split mode. // Does nothing and returns false if the window is already split. // A sashPosition of 0 means choose a default sash position, - // negative sashPosition specifies the size of right/lower pane as it's + // negative sashPosition specifies the size of right/lower pane as its // absolute value rather than the size of left/upper pane. virtual bool SplitVertically(wxWindow *window1, wxWindow *window2, diff --git a/interface/wx/window.h b/interface/wx/window.h index 89fa9e2dc3..7aecd7d341 100644 --- a/interface/wx/window.h +++ b/interface/wx/window.h @@ -3014,7 +3014,7 @@ public: This function returns @true if this window, or one of its parent windows, is scheduled for destruction and can be useful to avoid manipulating it as it's usually useless to do something with a window - which is on the point of disappearing anyhow. + which is at the point of disappearing anyhow. */ bool IsBeingDeleted() const; diff --git a/src/aui/framemanager.cpp b/src/aui/framemanager.cpp index 8f923653c1..4d4300d757 100644 --- a/src/aui/framemanager.cpp +++ b/src/aui/framemanager.cpp @@ -2276,8 +2276,8 @@ wxSizer* wxAuiManager::LayoutAll(wxAuiPaneInfoArray& panes, dock.min_size = dock_min_size; - // if the pane's current size is less than it's - // minimum, increase the dock's size to it's minimum + // if the pane's current size is less than its + // minimum, increase the dock's size to its minimum if (dock.size < dock.min_size) dock.size = dock.min_size; @@ -2587,7 +2587,7 @@ void wxAuiManager::Update() } else { - // frame already exists, make sure it's position + // frame already exists, make sure its position // and size reflect the information in wxAuiPaneInfo if ((p.frame->GetPosition() != p.floating_pos) || (p.frame->GetSize() != p.floating_size)) { @@ -3757,7 +3757,7 @@ void wxAuiManager::OnFloatingPaneMoved(wxWindow* wnd, wxDirection dir) DoDrop(m_docks, m_panes, pane, client_pt, action_offset); } - // if the pane is still floating, update it's floating + // if the pane is still floating, update its floating // position (that we store) if (pane.IsFloating()) { @@ -4370,7 +4370,7 @@ bool wxAuiManager::DoEndResizeAction(wxMouseEvent& event) // check against the pane's minimum size, if specified. please note // that this is not enough to ensure that the minimum size will // not be violated, because the whole frame might later be shrunk, - // causing the size of the pane to violate it's minimum size + // causing the size of the pane to violate its minimum size if (pane.min_size.IsFullySpecified()) { min_size = 0; @@ -4742,7 +4742,7 @@ void wxAuiManager::OnCaptureLost(wxMouseCaptureLostEvent& WXUNUSED(event)) void wxAuiManager::OnChildFocus(wxChildFocusEvent& event) { - // when a child pane has it's focus set, we should change the + // when a child pane has its focus set, we should change the // pane's active state to reflect this. (this is only true if // active panes are allowed by the owner) if (GetFlags() & wxAUI_MGR_ALLOW_ACTIVE_PANE) diff --git a/src/common/combocmn.cpp b/src/common/combocmn.cpp index fa9acdc1ba..f346ea9a6a 100644 --- a/src/common/combocmn.cpp +++ b/src/common/combocmn.cpp @@ -2484,7 +2484,7 @@ void wxComboCtrlBase::DoShowPopup( const wxRect& rect, int WXUNUSED(flags) ) m_popupWinState = Visible; // If popup window was a generic top-level window, or the - // wxPopupWindow implemenation on this platform is classified as + // wxPopupWindow implementation on this platform is classified as // perfect, then we should be able to safely set focus to the popup // control. // In x11 backend, popup window neither generic top-level nor diff --git a/src/common/zipstrm.cpp b/src/common/zipstrm.cpp index f81ec84b75..4b952f4fd5 100644 --- a/src/common/zipstrm.cpp +++ b/src/common/zipstrm.cpp @@ -320,7 +320,7 @@ size_t wxStoredOutputStream::OnSysWrite(const void *buffer, size_t size) // non-seekable stream. // // In this case there's no option but to decompress the stream to find -// it's length, but we can still write the raw compressed data to avoid the +// its length, but we can still write the raw compressed data to avoid the // compression overhead (which is the greater one). // // Usage is like this: @@ -1119,7 +1119,7 @@ size_t wxZipEntry::WriteCentral(wxOutputStream& stream, wxMBConv& conv) const // Info-zip prefixes this record with a signature, but pkzip doesn't. So if // the 1st value is the signature then it is probably an info-zip record, // though there is a small chance that it is in fact a pkzip record which -// happens to have the signature as it's CRC. +// happens to have the signature as its CRC. // size_t wxZipEntry::ReadDescriptor(wxInputStream& stream) { diff --git a/src/gtk/toplevel.cpp b/src/gtk/toplevel.cpp index 7c41747531..740bfab8dd 100644 --- a/src/gtk/toplevel.cpp +++ b/src/gtk/toplevel.cpp @@ -1386,7 +1386,7 @@ void wxTopLevelWindowGTK::SetIcons( const wxIconBundle &icons ) base_type::SetIcons(icons); // Setting icons before window is realized can cause a GTK assertion if - // another TLW is realized before this one, and it has this one as it's + // another TLW is realized before this one, and it has this one as its // transient parent. The life demo exibits this problem. if (m_widget && gtk_widget_get_realized(m_widget)) { diff --git a/src/msw/wince/textctrlce.cpp b/src/msw/wince/textctrlce.cpp index d1b487be04..1d80a7c3f2 100644 --- a/src/msw/wince/textctrlce.cpp +++ b/src/msw/wince/textctrlce.cpp @@ -852,7 +852,7 @@ bool wxTextCtrl::CanRedo() const // ---------------------------------------------------------------------------- // ---------------------------------------------------------------------------- -// implemenation details +// implementation details // ---------------------------------------------------------------------------- void wxTextCtrl::Command(wxCommandEvent & event) diff --git a/src/osx/cocoa/nonownedwnd.mm b/src/osx/cocoa/nonownedwnd.mm index d31852c05e..66cd58d947 100644 --- a/src/osx/cocoa/nonownedwnd.mm +++ b/src/osx/cocoa/nonownedwnd.mm @@ -1,7 +1,7 @@ ///////////////////////////////////////////////////////////////////////////// // Name: src/osx/cocoa/nonownedwnd.mm // Purpose: non owned window for cocoa -// Author: DavidStefan Csomor +// Author: Stefan Csomor // Modified by: // Created: 2008-06-20 // Copyright: (c) Stefan Csomor diff --git a/src/osx/slider_osx.cpp b/src/osx/slider_osx.cpp index 5d658fe181..e5e83b0ae7 100644 --- a/src/osx/slider_osx.cpp +++ b/src/osx/slider_osx.cpp @@ -475,7 +475,7 @@ void wxSlider::DoSetSize(int x, int y, int w, int h, int sizeFlags) } // yet another hack since this is a composite control - // when wxSlider has it's size hardcoded, we're not allowed to + // when wxSlider has its size hardcoded, we're not allowed to // change the size. But when the control has labels, we DO need // to resize the internal Mac control to accommodate the text labels.