diff --git a/ResizableLib/Doxyfile b/ResizableLib/Doxyfile index 87a152b..4a68dad 100644 --- a/ResizableLib/Doxyfile +++ b/ResizableLib/Doxyfile @@ -38,7 +38,7 @@ OUTPUT_DIRECTORY = .\Docs # The default language is English, other supported languages are: # Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, Dutch, # Finnish, French, German, Greek, Hungarian, Italian, Japanese, Japanese-en -# (Japanese with english messages), Korean, Norwegian, Polish, Portuguese, +# (Japanese with English messages), Korean, Norwegian, Polish, Portuguese, # Romanian, Russian, Serbian, Slovak, Slovene, Spanish, Swedish and Ukrainian. OUTPUT_LANGUAGE = English @@ -156,7 +156,7 @@ INTERNAL_DOCS = YES # file names in lower case letters. If set to YES upper case letters are also # allowed. This is useful if you have classes or files whose names only differ # in case and if your file system supports case sensitive file names. Windows -# users are adviced to set this option to NO. +# users are advised to set this option to NO. CASE_SENSE_NAMES = NO @@ -188,7 +188,7 @@ SHOW_INCLUDE_FILES = YES # will interpret the first line (until the first dot) of a JavaDoc-style # comment as the brief description. If set to NO, the JavaDoc # comments will behave just like the Qt-style comments (thus requiring an -# explict @brief command for a brief description. +# explicit @brief command for a brief description. JAVADOC_AUTOBRIEF = NO @@ -384,7 +384,7 @@ RECURSIVE = YES EXCLUDE = # The EXCLUDE_SYMLINKS tag can be used select whether or not files or directories -# that are symbolic links (a Unix filesystem feature) are excluded from the input. +# that are symbolic links (a Unix file system feature) are excluded from the input. EXCLUDE_SYMLINKS = NO @@ -711,7 +711,7 @@ COMPACT_RTF = NO RTF_HYPERLINKS = NO # Load stylesheet definitions from file. Syntax is similar to doxygen's -# config file, i.e. a series of assigments. You only have to provide +# config file, i.e. a series of assignments. You only have to provide # replacements, missing definitions are set to their default value. RTF_STYLESHEET_FILE = @@ -915,7 +915,7 @@ EXPAND_AS_DEFINED = SKIP_FUNCTION_MACROS = YES #--------------------------------------------------------------------------- -# Configuration::addtions related to external references +# Configuration::additions related to external references #--------------------------------------------------------------------------- # The TAGFILES option can be used to specify one or more tagfiles. @@ -952,7 +952,7 @@ ALLEXTERNALS = NO EXTERNAL_GROUPS = YES -# The PERL_PATH should be the absolute path and name of the perl script +# The PERL_PATH should be the absolute path and name of the Perl script # interpreter (i.e. the result of `which perl'). PERL_PATH = /usr/bin/perl @@ -964,7 +964,7 @@ PERL_PATH = /usr/bin/perl # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will # generate a inheritance diagram (in Html, RTF and LaTeX) for classes with base or # super classes. Setting the tag to NO turns the diagrams off. Note that this -# option is superceded by the HAVE_DOT option below. This is only a fallback. It is +# option is superseded by the HAVE_DOT option below. This is only a fallback. It is # recommended to install and use dot, since it yield more powerful graphs. CLASS_DIAGRAMS = YES diff --git a/ResizableLib/ResizableDialog.cpp b/ResizableLib/ResizableDialog.cpp index 378a3fa..3f9994f 100644 --- a/ResizableLib/ResizableDialog.cpp +++ b/ResizableLib/ResizableDialog.cpp @@ -82,7 +82,7 @@ BOOL CResizableDialog::OnNcCreate(LPCREATESTRUCT lpCreateStruct) if (!CreateSizeGrip(!bChild)) return FALSE; - // Moved from behind if (!bChild) because user could resize the dialog smaller as in resource defined and that causes some static text to be clipped or dissapear. + // Moved from behind if (!bChild) because user could resize the dialog smaller as in resource defined and that causes some static text to be clipped or disappear. MakeResizable(lpCreateStruct); if (!bChild) diff --git a/ResizableLib/ResizableLayout.cpp b/ResizableLib/ResizableLayout.cpp index e168237..c36620f 100644 --- a/ResizableLib/ResizableLayout.cpp +++ b/ResizableLib/ResizableLayout.cpp @@ -397,7 +397,7 @@ inline CWnd* GetRootParentWnd(CWnd* pWnd) * area to avoid flickering. * * @param pDC Pointer to the target device context - * @param bUndo Flag that specifies wether to restore the clipping region + * @param bUndo Flag that specifies whether to restore the clipping region * * @return The return value is @c TRUE if the clipping region has been * modified, @c FALSE otherwise @@ -774,10 +774,10 @@ BOOL CResizableLayout::GetAnchorMargins(HWND hWnd, const CSize &sizeChild, CRect * @c LikesClipping only once, and the @a refresh property as * dynamic, causing @c NeedsRefresh to be called every time. * @n This should be right for most situations, as the need for - * @a refresh usually depends on the size fo a control, while the + * @a refresh usually depends on the size of the control, while the * support for @a clipping is usually linked to the specific type * of control, which is unlikely to change at run-time, but you can - * still override this function if a different beahvior is needed. + * still override this function if a different behaviour is needed. * * @sa LikesClipping NeedsRefresh LAYOUTINFO RESIZEPROPERTIES */ @@ -846,7 +846,7 @@ void CResizableLayout::MakeResizable(LPCREATESTRUCT lpCreateStruct) const * This function should be called inside the parent window @c WM_NCCALCSIZE * message handler to help eliminate flickering. * - * @param bAfterDefault Flag that specifies wether the call is made before + * @param bAfterDefault Flag that specifies whether the call is made before * or after the default handler * @param lpncsp Pointer to the @c NCCALCSIZE_PARAMS structure that is * passed to the message handler diff --git a/ResizableLib/ResizableMsgSupport.cpp b/ResizableLib/ResizableMsgSupport.cpp index 3426a4b..0cbaa40 100644 --- a/ResizableLib/ResizableMsgSupport.cpp +++ b/ResizableLib/ResizableMsgSupport.cpp @@ -27,7 +27,7 @@ static char THIS_FILE[] = __FILE__; ///////////////////////////////////////////////////////////////////////////// // Registered message to communicate with the library -// static intializer must be called before user code +// static initializer must be called before user code #pragma warning(disable:4073) #pragma init_seg(lib) diff --git a/ResizableLib/ResizableMsgSupport.h b/ResizableLib/ResizableMsgSupport.h index b40c0da..4f723f3 100644 --- a/ResizableLib/ResizableMsgSupport.h +++ b/ResizableLib/ResizableMsgSupport.h @@ -24,7 +24,7 @@ typedef struct tagRESIZEPROPERTIES { - // wether to ask for resizing properties every time + // whether to ask for resizing properties every time BOOL bAskClipping; BOOL bAskRefresh; // otherwise, use the cached properties diff --git a/ResizableLib/ResizablePageEx.cpp b/ResizableLib/ResizablePageEx.cpp index ec5868c..1ec9dea 100644 --- a/ResizableLib/ResizablePageEx.cpp +++ b/ResizableLib/ResizablePageEx.cpp @@ -123,7 +123,7 @@ void CResizablePageEx::OnDestroy() HBRUSH CResizablePageEx::OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor) { - // NOTE: this message couldn't be catched without the above hack + // NOTE: this message couldn't be caught without the above hack HBRUSH hbr = CPropertyPageEx::OnCtlColor(pDC, pWnd, nCtlColor); if (hbr && (m_psp.dwFlags & PSP_HIDEHEADER)) diff --git a/ResizableLib/ResizableSheetEx.cpp b/ResizableLib/ResizableSheetEx.cpp index c82ecf1..8d997b9 100644 --- a/ResizableLib/ResizableSheetEx.cpp +++ b/ResizableLib/ResizableSheetEx.cpp @@ -135,7 +135,7 @@ LRESULT CResizableSheetEx::OnResizeSupport(WPARAM wParam, LPARAM lParam) if (pWnd == NULL) return 0; - // suclass the window again and refresh page and sheet + // subclass the window again and refresh page and sheet pWnd->SubclassWindow(pWnd->Detach()); RefreshLayout(); pWnd->SendMessage(WM_SIZE); diff --git a/ResizableLib/ResizableVersion.cpp b/ResizableLib/ResizableVersion.cpp index d796a9d..39d7e00 100644 --- a/ResizableLib/ResizableVersion.cpp +++ b/ResizableLib/ResizableVersion.cpp @@ -21,7 +21,7 @@ ////////////////////////////////////////////////////////////////////// // Static initializer object (with macros to hide in ClassView) -// static intializer must be called before user code +// static initializer must be called before user code #pragma warning(disable:4073) #pragma init_seg(lib) diff --git a/ResizableLib/ResizableWndState.cpp b/ResizableLib/ResizableWndState.cpp index 2c15db2..3ddaae3 100644 --- a/ResizableLib/ResizableWndState.cpp +++ b/ResizableLib/ResizableWndState.cpp @@ -91,7 +91,7 @@ BOOL CResizableWndState::SaveWindowRect(LPCTSTR pszName, BOOL bRectOnly) * GetWindowPlacement and SetWindowPlacement. * * @param pszName String that identifies stored settings - * @param bRectOnly Flag that specifies wether to ignore min/max state + * @param bRectOnly Flag that specifies whether to ignore min/max state * * @return Returns @a TRUE if successful, @a FALSE otherwise */