No real changes, just fix a typo in comments and documentation.
Use "surprising" instead of (common) "surprizing" misspelling. Closes #11627. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63154 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -49,7 +49,7 @@
|
|||||||
this global setting determines what should we do if the setting FOO
|
this global setting determines what should we do if the setting FOO
|
||||||
requires BAR and BAR is not set: we can either silently unset FOO as well
|
requires BAR and BAR is not set: we can either silently unset FOO as well
|
||||||
(do this if you're trying to build the smallest possible library) or give an
|
(do this if you're trying to build the smallest possible library) or give an
|
||||||
error and abort (default as leads to least surprizing behaviour)
|
error and abort (default as leads to least surprising behaviour)
|
||||||
*/
|
*/
|
||||||
#define wxABORT_ON_CONFIG_ERROR
|
#define wxABORT_ON_CONFIG_ERROR
|
||||||
|
|
||||||
|
@@ -20,7 +20,7 @@
|
|||||||
deleted when the smart pointer goes out of scope. This class is different from
|
deleted when the smart pointer goes out of scope. This class is different from
|
||||||
the @c std::auto_ptr<> in so far as it doesn't provide copy constructor
|
the @c std::auto_ptr<> in so far as it doesn't provide copy constructor
|
||||||
nor assignment operator. This limits what you can do with it but is much less
|
nor assignment operator. This limits what you can do with it but is much less
|
||||||
surprizing than the "destructive copy" behaviour of the standard class.
|
surprising than the "destructive copy" behaviour of the standard class.
|
||||||
|
|
||||||
@b Example:
|
@b Example:
|
||||||
|
|
||||||
|
@@ -1365,7 +1365,7 @@ wxColour wxWindowBase::GetBackgroundColour() const
|
|||||||
wxColour colBg = GetDefaultAttributes().colBg;
|
wxColour colBg = GetDefaultAttributes().colBg;
|
||||||
|
|
||||||
// we must return some valid colour to avoid redoing this every time
|
// we must return some valid colour to avoid redoing this every time
|
||||||
// and also to avoid surprizing the applications written for older
|
// and also to avoid surprising the applications written for older
|
||||||
// wxWidgets versions where GetBackgroundColour() always returned
|
// wxWidgets versions where GetBackgroundColour() always returned
|
||||||
// something -- so give them something even if it doesn't make sense
|
// something -- so give them something even if it doesn't make sense
|
||||||
// for this window (e.g. it has a themed background)
|
// for this window (e.g. it has a themed background)
|
||||||
|
@@ -2454,7 +2454,7 @@ bool wxListCtrl::MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result)
|
|||||||
// wrap to the beginning if necessary
|
// wrap to the beginning if necessary
|
||||||
if ( currentPos == maxPos )
|
if ( currentPos == maxPos )
|
||||||
{
|
{
|
||||||
// somewhat surprizingly, LVFI_WRAP isn't set in
|
// somewhat surprisingly, LVFI_WRAP isn't set in
|
||||||
// flags but we still should wrap
|
// flags but we still should wrap
|
||||||
currentPos = 0;
|
currentPos = 0;
|
||||||
}
|
}
|
||||||
|
@@ -2338,7 +2338,7 @@ bool wxWindowMSW::MSWProcessMessage(WXMSG* pMsg)
|
|||||||
// combinations which are always processed)
|
// combinations which are always processed)
|
||||||
LONG lDlgCode = ::SendMessage(msg->hwnd, WM_GETDLGCODE, 0, 0);
|
LONG lDlgCode = ::SendMessage(msg->hwnd, WM_GETDLGCODE, 0, 0);
|
||||||
|
|
||||||
// surprizingly, DLGC_WANTALLKEYS bit mask doesn't contain the
|
// surprisingly, DLGC_WANTALLKEYS bit mask doesn't contain the
|
||||||
// DLGC_WANTTAB nor DLGC_WANTARROWS bits although, logically,
|
// DLGC_WANTTAB nor DLGC_WANTARROWS bits although, logically,
|
||||||
// it, of course, implies them
|
// it, of course, implies them
|
||||||
if ( lDlgCode & DLGC_WANTALLKEYS )
|
if ( lDlgCode & DLGC_WANTALLKEYS )
|
||||||
|
@@ -138,7 +138,7 @@ int wxDialog::ShowModal()
|
|||||||
return GetReturnCode();
|
return GetReturnCode();
|
||||||
}
|
}
|
||||||
|
|
||||||
// NB: this function (surprizingly) may be called for both modal and modeless
|
// NB: this function (surprisingly) may be called for both modal and modeless
|
||||||
// dialogs and should work for both of them
|
// dialogs and should work for both of them
|
||||||
void wxDialog::EndModal(int retCode)
|
void wxDialog::EndModal(int retCode)
|
||||||
{
|
{
|
||||||
|
@@ -567,7 +567,7 @@ static const struct ToLongData
|
|||||||
{ wxT("--1"), 0, Number_Invalid },
|
{ wxT("--1"), 0, Number_Invalid },
|
||||||
|
|
||||||
{ wxT("-1"), -1, Number_Signed | Number_Long },
|
{ wxT("-1"), -1, Number_Signed | Number_Long },
|
||||||
// this is surprizing but consistent with strtoul() behaviour
|
// this is surprising but consistent with strtoul() behaviour
|
||||||
{ wxT("-1"), ULONG_MAX, Number_Unsigned | Number_Long },
|
{ wxT("-1"), ULONG_MAX, Number_Unsigned | Number_Long },
|
||||||
|
|
||||||
// this must overflow, even with 64 bit long
|
// this must overflow, even with 64 bit long
|
||||||
|
Reference in New Issue
Block a user