Name and version changes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27404 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2004-05-23 14:56:36 +00:00
parent c829d62b69
commit 77ffb5937e
1979 changed files with 3443 additions and 3463 deletions

View File

@@ -5,7 +5,7 @@
// Created: 10/12/99
// RCS-ID: $Id$
// Copyright: (c) David Webster
// Licence: wxWindows licence
// Licence: wxWidgets licence
/////////////////////////////////////////////////////////////////////////////
//
@@ -1087,7 +1087,7 @@ WXDWORD wxWindowOS2::OS2GetStyle(
} // end of wxWindowMSW::MSWGetStyle
//
// Make a Windows extended style from the given wxWindows window style
// Make a Windows extended style from the given wxWidgets window style
//
WXDWORD wxWindowOS2::MakeExtendedStyle(
long lStyle
@@ -2269,7 +2269,7 @@ void wxWindowOS2::UnpackMenuSelect(
} // end of wxWindowOS2::UnpackMenuSelect
// ---------------------------------------------------------------------------
// Main wxWindows window proc and the window proc for wxWindow
// Main wxWidgets window proc and the window proc for wxWindow
// ---------------------------------------------------------------------------
//
@@ -2754,7 +2754,7 @@ MRESULT wxWindowOS2::OS2WindowProc(
break;
}
//
// Simulate a WM_COMMAND here, as wxWindows expects all control
// Simulate a WM_COMMAND here, as wxWidgets expects all control
// button clicks to generate WM_COMMAND msgs, not WM_CONTROL
//
if (pWin->IsKindOf(CLASSINFO(wxRadioBox)))
@@ -2814,7 +2814,7 @@ MRESULT wxWindowOS2::OS2WindowProc(
break;
}
//
// Simulate a WM_COMMAND here, as wxWindows expects all control
// Simulate a WM_COMMAND here, as wxWidgets expects all control
// button clicks to generate WM_COMMAND msgs, not WM_CONTROL
//
if (pWin->IsKindOf(CLASSINFO(wxListBox)))
@@ -3386,7 +3386,7 @@ bool wxWindowOS2::OS2OnDrawItem(
);
vDc.SetHPS(pMeasureStruct->hps);
//
// Load the wxWindows Pallete and set to RGB mode
// Load the wxWidgets Pallete and set to RGB mode
//
if (!::GpiCreateLogColorTable( pMeasureStruct->hps
,0L
@@ -3962,7 +3962,7 @@ void wxWindowOS2::InitMouseEvent(
int nHeight;
DoGetSize(0, &nHeight);
rEvent.m_x = nX;
// Convert to wxWindows standard coordinate system!
// Convert to wxWidgets standard coordinate system!
rEvent.m_y = nHeight - nY;
rEvent.m_shiftDown = ((uFlags & KC_SHIFT) != 0);
rEvent.m_controlDown = ((uFlags & KC_CTRL) != 0);
@@ -4388,7 +4388,7 @@ void wxWindowOS2::MoveChildren(
//
// Getting the Y position for a window, like a control, is a real
// pain. There are three sitatuions we must deal with in determining
// the OS2 to wxWindows Y coordinate.
// the OS2 to wxWidgets Y coordinate.
//
// 1) The controls are created in a dialog.
// This is the easiest since a dialog is created with its original
@@ -4900,7 +4900,7 @@ const char* wxGetMessageName(
// Beginning of user defined messages
case 0x1000: return "WM_USER";
// wxWindows user defined types
// wxWidgets user defined types
// listview
// case 0x1000 + 0: return "LVM_GETBKCOLOR";