diff --git a/docs/debugger/debug-interface-access/idiaenumframedata.md b/docs/debugger/debug-interface-access/idiaenumframedata.md index 17d3b32adde..f82fd1a60fb 100644 --- a/docs/debugger/debug-interface-access/idiaenumframedata.md +++ b/docs/debugger/debug-interface-access/idiaenumframedata.md @@ -1,6 +1,6 @@ --- -description: Enumerates the various frame data elements contained in the data source. title: IDiaEnumFrameData +description: Enumerates the various frame data elements contained in the data source. ms.date: "11/04/2016" ms.topic: "reference" dev_langs: @@ -78,7 +78,7 @@ This example shows how to obtain (the `GetEnumFrameData` function) and use (the void ShowFrameData(IDiaSession *pSession) { - IDiaEnumFrameData* pEnumFrameData = GetEnumFrameData(pSession);; + IDiaEnumFrameData* pEnumFrameData = GetEnumFrameData(pSession); if (pEnumFrameData != NULL) { diff --git a/docs/snippets/cpp/VS_Snippets_Misc/NVC_MFC_VisualStudioDemo/cpp/AppLookDlg.cpp b/docs/snippets/cpp/VS_Snippets_Misc/NVC_MFC_VisualStudioDemo/cpp/AppLookDlg.cpp index ea56f03c077..9ebbb75ccc7 100644 --- a/docs/snippets/cpp/VS_Snippets_Misc/NVC_MFC_VisualStudioDemo/cpp/AppLookDlg.cpp +++ b/docs/snippets/cpp/VS_Snippets_Misc/NVC_MFC_VisualStudioDemo/cpp/AppLookDlg.cpp @@ -34,7 +34,7 @@ CAppLookDlg::CAppLookDlg(BOOL bStartup, CWnd* pParent /*=NULL*/) : m_bActiveTabCloseButton = FALSE; m_nAppLook = theApp.GetInt(_T("AppLook"), 3); - m_nStyle = theApp.GetInt(_T("AppStyle"), 0);; + m_nStyle = theApp.GetInt(_T("AppStyle"), 0); m_bShowAtStartup = theApp.GetInt(_T("ShowAppLookAtStartup"), TRUE); m_bOneNoteTabs = theApp.GetInt(_T("OneNoteTabs"), TRUE); m_bDockTabColors = theApp.GetInt(_T("DockTabColors"), FALSE); diff --git a/docs/snippets/cpp/VS_Snippets_Misc/NVC_MFC_WordPad/cpp/wordpvw.cpp b/docs/snippets/cpp/VS_Snippets_Misc/NVC_MFC_WordPad/cpp/wordpvw.cpp index 1b8c19de169..aa4d96a5df0 100644 --- a/docs/snippets/cpp/VS_Snippets_Misc/NVC_MFC_WordPad/cpp/wordpvw.cpp +++ b/docs/snippets/cpp/VS_Snippets_Misc/NVC_MFC_WordPad/cpp/wordpvw.cpp @@ -456,7 +456,7 @@ void CWordPadView::OnInsertDateTime() { CDateDialog dlg; if (dlg.DoModal() == IDOK) - GetRichEditCtrl().ReplaceSel(dlg.m_strSel);; + GetRichEditCtrl().ReplaceSel(dlg.m_strSel); } void CWordPadView::OnFormatParagraph()