diff options
Diffstat (limited to 'plugins/IEView/src/ChatHTMLBuilder.cpp')
| -rw-r--r-- | plugins/IEView/src/ChatHTMLBuilder.cpp | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/IEView/src/ChatHTMLBuilder.cpp b/plugins/IEView/src/ChatHTMLBuilder.cpp index b8264298bb..46c079293b 100644 --- a/plugins/IEView/src/ChatHTMLBuilder.cpp +++ b/plugins/IEView/src/ChatHTMLBuilder.cpp @@ -50,29 +50,29 @@ void ChatHTMLBuilder::loadMsgDlgFont(int i, LOGFONTA * lf, COLORREF * colour)  	int style;
  	DBVARIANT dbv;
  	if (colour) {
 -		mir_snprintf(str, SIZEOF(str), "Font%dCol", i);
 +		mir_snprintf(str, "Font%dCol", i);
  		*colour = db_get_dw(NULL, CHATFONTMOD, str, 0x000000);
  	}
  	if (lf) {
 -		mir_snprintf(str, SIZEOF(str), "Font%dSize", i);
 +		mir_snprintf(str, "Font%dSize", i);
  		lf->lfHeight = (char)db_get_b(NULL, CHATFONTMOD, str, 10);
  		lf->lfHeight = abs(lf->lfHeight);
  		lf->lfWidth = 0;
  		lf->lfEscapement = 0;
  		lf->lfOrientation = 0;
 -		mir_snprintf(str, SIZEOF(str), "Font%dSty", i);
 +		mir_snprintf(str, "Font%dSty", i);
  		style = db_get_b(NULL, CHATFONTMOD, str, 0);
  		lf->lfWeight = style & FONTF_BOLD ? FW_BOLD : FW_NORMAL;
  		lf->lfItalic = style & FONTF_ITALIC ? 1 : 0;
  		lf->lfUnderline = style & FONTF_UNDERLINE ? 1 : 0;
  		lf->lfStrikeOut = 0;
 -		mir_snprintf(str, SIZEOF(str), "Font%dSet", i);
 +		mir_snprintf(str, "Font%dSet", i);
  		lf->lfCharSet = db_get_b(NULL, CHATFONTMOD, str, DEFAULT_CHARSET);
  		lf->lfOutPrecision = OUT_DEFAULT_PRECIS;
  		lf->lfClipPrecision = CLIP_DEFAULT_PRECIS;
  		lf->lfQuality = DEFAULT_QUALITY;
  		lf->lfPitchAndFamily = DEFAULT_PITCH | FF_DONTCARE;
 -		mir_snprintf(str, SIZEOF(str), "Font%d", i);
 +		mir_snprintf(str, "Font%d", i);
  		if (db_get(NULL, CHATFONTMOD, str, &dbv))
  			mir_strcpy(lf->lfFaceName, "Verdana");
  		else {
  | 
