mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:19:49 +00:00
programs: Assorted spelling fixes.
This commit is contained in:
parent
e0f54d1b20
commit
1b6eed8a99
6 changed files with 9 additions and 9 deletions
|
@ -57,7 +57,7 @@ static void GraphCtrl_Init(TGraphCtrl* this)
|
||||||
* we need a starting point (i.e. a "previous" point)
|
* we need a starting point (i.e. a "previous" point)
|
||||||
* use 0.0 as the default first point.
|
* use 0.0 as the default first point.
|
||||||
* these are public member variables, and can be changed outside
|
* these are public member variables, and can be changed outside
|
||||||
* (after construction). Therefore m_perviousPosition could be set to
|
* (after construction). Therefore m_dPreviousPosition could be set to
|
||||||
* a more appropriate value prior to the first call to SetPosition.
|
* a more appropriate value prior to the first call to SetPosition.
|
||||||
*/
|
*/
|
||||||
this->m_dPreviousPosition[0] = 0.0;
|
this->m_dPreviousPosition[0] = 0.0;
|
||||||
|
@ -69,7 +69,7 @@ static void GraphCtrl_Init(TGraphCtrl* this)
|
||||||
this->m_nYDecimals = 3;
|
this->m_nYDecimals = 3;
|
||||||
|
|
||||||
/* set some initial values for the scaling until "SetRange" is called.
|
/* set some initial values for the scaling until "SetRange" is called.
|
||||||
* these are protected varaibles and must be set with SetRange
|
* these are protected variables and must be set with SetRange
|
||||||
* in order to ensure that m_dRange is updated accordingly
|
* in order to ensure that m_dRange is updated accordingly
|
||||||
*/
|
*/
|
||||||
/* m_dLowerLimit = -10.0; */
|
/* m_dLowerLimit = -10.0; */
|
||||||
|
@ -401,7 +401,7 @@ static void GraphCtrl_DrawPoint(TGraphCtrl* this)
|
||||||
SRCCOPY);
|
SRCCOPY);
|
||||||
|
|
||||||
/* establish a rectangle over the right side of plot */
|
/* establish a rectangle over the right side of plot */
|
||||||
/* which now needs to be cleaned up proir to adding the new point */
|
/* which now needs to be cleaned up prior to adding the new point */
|
||||||
rectCleanUp = this->m_rectPlot;
|
rectCleanUp = this->m_rectPlot;
|
||||||
rectCleanUp.left = rectCleanUp.right - this->m_nShiftPixels;
|
rectCleanUp.left = rectCleanUp.right - this->m_nShiftPixels;
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
* Winebrowser is a winelib application that will start the appropriate
|
* Winebrowser is a winelib application that will start the appropriate
|
||||||
* native browser or mail client for a wine installation that lacks a
|
* native browser or mail client for a wine installation that lacks a
|
||||||
* windows browser/mail client. For example, you will be able to open
|
* windows browser/mail client. For example, you will be able to open
|
||||||
* urls via native mozilla if no browser has yet been installed in wine.
|
* URLs via native mozilla if no browser has yet been installed in wine.
|
||||||
*
|
*
|
||||||
* The application to launch is chosen from a default set or, if set,
|
* The application to launch is chosen from a default set or, if set,
|
||||||
* taken from a registry key.
|
* taken from a registry key.
|
||||||
|
|
|
@ -668,7 +668,7 @@ static unsigned WCCURSES_FillMouse(INPUT_RECORD* ir)
|
||||||
WINE_TRACE("[%u]: (%d, %d) %08lx\n",
|
WINE_TRACE("[%u]: (%d, %d) %08lx\n",
|
||||||
mevt.id, mevt.x, mevt.y, (unsigned long)mevt.bstate);
|
mevt.id, mevt.x, mevt.y, (unsigned long)mevt.bstate);
|
||||||
|
|
||||||
/* macros to ease mapping ncurse button numbering to windows's one */
|
/* macros to ease mapping ncurse button numbering to windows' one */
|
||||||
#define BTN1_BIT FROM_LEFT_1ST_BUTTON_PRESSED
|
#define BTN1_BIT FROM_LEFT_1ST_BUTTON_PRESSED
|
||||||
#define BTN2_BIT RIGHTMOST_BUTTON_PRESSED
|
#define BTN2_BIT RIGHTMOST_BUTTON_PRESSED
|
||||||
#define BTN3_BIT FROM_LEFT_2ND_BUTTON_PRESSED
|
#define BTN3_BIT FROM_LEFT_2ND_BUTTON_PRESSED
|
||||||
|
|
|
@ -447,7 +447,7 @@ HFONT WCUSER_CopyFont(struct config_data* config, HWND hWnd, const LOGFONTW* lf,
|
||||||
* - the width of all characters in the font
|
* - the width of all characters in the font
|
||||||
* This isn't true in Wine. As a temporary workaround, we get as the width of the
|
* This isn't true in Wine. As a temporary workaround, we get as the width of the
|
||||||
* cell, the width of the first character in the font, after checking that all
|
* cell, the width of the first character in the font, after checking that all
|
||||||
* characters in the font have the same width (I hear paranoïa coming)
|
* characters in the font have the same width (I hear paranoia coming)
|
||||||
* when this gets fixed, the code should be using tm.tmAveCharWidth
|
* when this gets fixed, the code should be using tm.tmAveCharWidth
|
||||||
* or tm.tmMaxCharWidth as the cell width.
|
* or tm.tmMaxCharWidth as the cell width.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1585,7 +1585,7 @@ static BOOL HLPFILE_BrowseParagraph(HLPFILE_PAGE* page, struct RtfData* rd,
|
||||||
|
|
||||||
case 0x8C:
|
case 0x8C:
|
||||||
if (!HLPFILE_RtfAddControl(rd, "\\_")) goto done;
|
if (!HLPFILE_RtfAddControl(rd, "\\_")) goto done;
|
||||||
/* FIXME: it could be that hypen is also in input stream !! */
|
/* FIXME: it could be that hyphen is also in input stream !! */
|
||||||
format += 1;
|
format += 1;
|
||||||
rd->char_pos++;
|
rd->char_pos++;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue