Commit 1b6eed8a authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

programs: Assorted spelling fixes.

parent e0f54d1b
...@@ -57,7 +57,7 @@ static void GraphCtrl_Init(TGraphCtrl* this) ...@@ -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,8 +69,8 @@ static void GraphCtrl_Init(TGraphCtrl* this) ...@@ -69,8 +69,8 @@ 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; */
/* m_dUpperLimit = 10.0; */ /* m_dUpperLimit = 10.0; */
...@@ -401,7 +401,7 @@ static void GraphCtrl_DrawPoint(TGraphCtrl* this) ...@@ -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 @@ ...@@ -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.
......
...@@ -229,7 +229,7 @@ static int show_dll_in_list( const char *name ) ...@@ -229,7 +229,7 @@ static int show_dll_in_list( const char *name )
static void set_controls_from_selection(HWND dialog) static void set_controls_from_selection(HWND dialog)
{ {
/* FIXME: display/update some information about the selected dll (purpose, recommended loadorder) maybe? */ /* FIXME: display/update some information about the selected dll (purpose, recommended load order) maybe? */
} }
static void clear_settings(HWND dialog) static void clear_settings(HWND dialog)
......
...@@ -668,7 +668,7 @@ static unsigned WCCURSES_FillMouse(INPUT_RECORD* ir) ...@@ -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, ...@@ -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, ...@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment