Closes #11408.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62560
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
wxS_IWOTH = 00002,
wxS_IXOTH = 00001,
- // longer but more readable synonims for the constants above:
+ // longer but more readable synonyms for the constants above:
wxPOSIX_USER_READ = wxS_IRUSR,
wxPOSIX_USER_WRITE = wxS_IWUSR,
wxPOSIX_USER_EXECUTE = wxS_IXUSR,
virtual void SetWindowStyleFlag( long style ) { m_windowStyle = style; }
virtual long GetWindowStyleFlag() const { return m_windowStyle; }
- // just some (somewhat shorter) synonims
+ // just some (somewhat shorter) synonyms
void SetWindowStyle( long style ) { SetWindowStyleFlag(style); }
long GetWindowStyle() const { return GetWindowStyleFlag(); }