Straighten out some ellipses.

This commit is contained in:
Francois Gouget 2008-11-25 17:42:38 +01:00 committed by Alexandre Julliard
parent 36e195a185
commit b3bf746ff9
9 changed files with 10 additions and 10 deletions

View File

@ -39,7 +39,7 @@
WINE_DEFAULT_DEBUG_CHANNEL(resource); WINE_DEFAULT_DEBUG_CHANNEL(resource);
/* Messages...used by FormatMessage (KERNEL32.something) /* Messages used by FormatMessage
* *
* They can be specified either directly or using a message ID and * They can be specified either directly or using a message ID and
* loading them from the resource. * loading them from the resource.

View File

@ -813,7 +813,7 @@ void ME_SetCharFormat(ME_TextEditor *editor, int nOfs, int nChars, CHARFORMAT2W
undo->nStart = tmp.pRun->member.run.nCharOfs+para->member.para.nCharOfs; undo->nStart = tmp.pRun->member.run.nCharOfs+para->member.para.nCharOfs;
undo->nLen = tmp.pRun->member.run.strText->nLen; undo->nLen = tmp.pRun->member.run.strText->nLen;
undo->di.member.ustyle = tmp.pRun->member.run.style; undo->di.member.ustyle = tmp.pRun->member.run.style;
/* we'd have to addref undo..ustyle and release tmp...style /* we'd have to addref undo...ustyle and release tmp...style
but they'd cancel each other out so we can do nothing instead */ but they'd cancel each other out so we can do nothing instead */
} }
else else

View File

@ -1121,7 +1121,7 @@ static DWORD MCI_ParseOptArgs(LPDWORD data, int _offset, LPCWSTR lpCmd,
} }
break; break;
case MCI_RECT: case MCI_RECT:
/* store rect in data (offset...offset+3) */ /* store rect in data (offset..offset+3) */
*dwFlags |= flg; *dwFlags |= flg;
if (!MCI_GetDWord(&(data[offset+0]), &args) || if (!MCI_GetDWord(&(data[offset+0]), &args) ||
!MCI_GetDWord(&(data[offset+1]), &args) || !MCI_GetDWord(&(data[offset+1]), &args) ||

View File

@ -885,8 +885,8 @@ static LRESULT CALLBACK EXPORT mainWindowDispatcher(
else switch(uMsg) { else switch(uMsg) {
case WM_CREATE: case WM_CREATE:
/* /*
* this is always the first message...at least as far as * this is always the first message... at least as far
* we are concerned. * as we are concerned.
*/ */
mwi_InitAll(hWnd); mwi_InitAll(hWnd);
break; break;