No real changes, just correct "synonim" typo in comments.

Closes #11408.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62560 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2009-11-05 14:59:30 +00:00
parent 2b76dfb048
commit eb6fda807a
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ enum wxPosixPermissions
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,

View File

@ -609,7 +609,7 @@ public:
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(); }