comparison src/VisVim/OleAut.cpp @ 4352:04736b4030ec v7.3.925

updated for version 7.3.925 Problem: Typos in source files. Solution: Fix the typos. (Ken Takata)
author Bram Moolenaar <bram@vim.org>
date Mon, 06 May 2013 04:24:17 +0200
parents beed57a8fcd1
children 1759d0ec0a6f
comparison
equal deleted inserted replaced
4351:e5137a5dcf15 4352:04736b4030ec
652 default: 652 default:
653 lstrcpy (ErrName, "UNKNOWN SCODE"); 653 lstrcpy (ErrName, "UNKNOWN SCODE");
654 } 654 }
655 655
656 char Buf[256]; 656 char Buf[256];
657 sprintf (Buf, "An OLE error occured:\r\nCode = %s\r\nResult = %lx.", 657 sprintf (Buf, "An OLE error occurred:\r\nCode = %s\r\nResult = %lx.",
658 (char*) ErrName, m_hResult); 658 (char*) ErrName, m_hResult);
659 MessageBox (NULL, Buf, "OLE Error", MB_OK); 659 MessageBox (NULL, Buf, "OLE Error", MB_OK);
660 } 660 }
661 661
662 662