riched20: Remove unused variables.

This commit is contained in:
Andrew Talbot 2008-04-23 22:13:07 +01:00 committed by Alexandre Julliard
parent 1e52433f01
commit 0ba8677430
4 changed files with 3 additions and 10 deletions

View File

@ -3531,7 +3531,6 @@ int ME_AutoURLDetect(ME_TextEditor *editor, WCHAR curChar)
int car_pos = 0; int car_pos = 0;
int text_pos=-1; int text_pos=-1;
int URLmin, URLmax = 0; int URLmin, URLmax = 0;
CHARRANGE url;
FINDTEXTA ft; FINDTEXTA ft;
CHARFORMAT2W cur_format; CHARFORMAT2W cur_format;
CHARFORMAT2W default_format; CHARFORMAT2W default_format;
@ -3585,8 +3584,6 @@ int ME_AutoURLDetect(ME_TextEditor *editor, WCHAR curChar)
} }
if (text_pos != -1) if (text_pos != -1)
{ {
url.cpMin=text_pos;
url.cpMax=car_pos-1;
ME_SetCharFormat(editor, text_pos, (URLmax-text_pos), &link); ME_SetCharFormat(editor, text_pos, (URLmax-text_pos), &link);
ME_RewrapRepaint(editor); ME_RewrapRepaint(editor);
break; break;

View File

@ -479,7 +479,7 @@ void ME_DrawParagraph(ME_Context *c, ME_DisplayItem *paragraph) {
RECT rc, rcPara; RECT rc, rcPara;
int y = c->pt.y; int y = c->pt.y;
int height = 0, baseline = 0, no=0, pno = 0; int height = 0, baseline = 0, no=0, pno = 0;
int xs = 0, xe = 0; int xe = 0;
BOOL visible = FALSE; BOOL visible = FALSE;
int nMargWidth = 0; int nMargWidth = 0;
@ -494,7 +494,6 @@ void ME_DrawParagraph(ME_Context *c, ME_DisplayItem *paragraph) {
nMargWidth = ME_twips2pointsX(c, para->pFmt->dxStartIndent); nMargWidth = ME_twips2pointsX(c, para->pFmt->dxStartIndent);
if (pno != 0) if (pno != 0)
nMargWidth += ME_twips2pointsX(c, para->pFmt->dxOffset); nMargWidth += ME_twips2pointsX(c, para->pFmt->dxOffset);
xs = c->rcView.left+nMargWidth;
xe = c->rcView.right - ME_twips2pointsX(c, para->pFmt->dxRightIndent); xe = c->rcView.right - ME_twips2pointsX(c, para->pFmt->dxRightIndent);
y += ME_DrawParaDecoration(c, para, y); y += ME_DrawParaDecoration(c, para, y);
break; break;

View File

@ -327,10 +327,9 @@ ME_LogFontFromStyle(ME_Context* c, LOGFONTW *lf, const ME_Style *s)
void ME_CharFormatFromLogFont(HDC hDC, const LOGFONTW *lf, CHARFORMAT2W *fmt) void ME_CharFormatFromLogFont(HDC hDC, const LOGFONTW *lf, CHARFORMAT2W *fmt)
{ {
int rx, ry; int ry;
ME_InitCharFormat2W(fmt); ME_InitCharFormat2W(fmt);
rx = GetDeviceCaps(hDC, LOGPIXELSX);
ry = GetDeviceCaps(hDC, LOGPIXELSY); ry = GetDeviceCaps(hDC, LOGPIXELSY);
lstrcpyW(fmt->szFaceName, lf->lfFaceName); lstrcpyW(fmt->szFaceName, lf->lfFaceName);
fmt->dwEffects = 0; fmt->dwEffects = 0;

View File

@ -470,7 +470,7 @@ BOOL ME_WrapMarkedParagraphs(ME_TextEditor *editor) {
ME_DisplayItem *item; ME_DisplayItem *item;
ME_Context c; ME_Context c;
BOOL bModified = FALSE; BOOL bModified = FALSE;
int yStart = -1, yEnd = -1; int yStart = -1;
ME_InitContext(&c, editor, GetDC(editor->hWnd)); ME_InitContext(&c, editor, GetDC(editor->hWnd));
c.pt.x = 0; c.pt.x = 0;
@ -499,8 +499,6 @@ BOOL ME_WrapMarkedParagraphs(ME_TextEditor *editor) {
bModified = bModified | bRedraw; bModified = bModified | bRedraw;
c.pt.y += item->member.para.nHeight; c.pt.y += item->member.para.nHeight;
if (bRedraw)
yEnd = c.pt.y;
item = item->member.para.next_para; item = item->member.para.next_para;
} }
editor->sizeWindow.cx = c.rcView.right-c.rcView.left; editor->sizeWindow.cx = c.rcView.right-c.rcView.left;