diff options
author | Bram Moolenaar <Bram@vim.org> | 2007-05-10 18:46:18 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2007-05-10 18:46:18 +0000 |
commit | e590119ea73e5afa0ee5b5a95047ddd8fb59de52 (patch) | |
tree | e5f8f25ec9062872f53f87eb3aa9d47d2b370f91 /src/VisVim | |
parent | 34e0bfaa809dbe9082b851cebc59a56a2b020577 (diff) | |
download | vim-git-e590119ea73e5afa0ee5b5a95047ddd8fb59de52.tar.gz |
updated for version 7.1b
Diffstat (limited to 'src/VisVim')
-rw-r--r-- | src/VisVim/Commands.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/VisVim/Commands.cpp b/src/VisVim/Commands.cpp index 254b7a964..95d7c0ee6 100644 --- a/src/VisVim/Commands.cpp +++ b/src/VisVim/Commands.cpp @@ -54,7 +54,7 @@ CCommands::~CCommands () void CCommands::SetApplicationObject (IApplication * pApplication) { // This function assumes pApplication has already been AddRef'd - // for us, which CDSAddIn did in its QueryInterface call + // for us, which CDSAddIn did in it's QueryInterface call // just before it called us. m_pApplication = pApplication; if (! m_pApplication) @@ -494,8 +494,9 @@ static BOOL VimOpenFile (BSTR& FileName, long LineNr) { // OLE automation object for com. with Vim - // When the object goes out of scope, it's desctructor destroys the OLE connection; - // This is imortant to avoid blocking the object + // When the object goes out of scope, it's destructor destroys the OLE + // connection; + // This is important to avoid blocking the object // (in this memory corruption would be likely when terminating Vim // while still running DevStudio). // So keep this object local! |