From 21be7a4c73c46d25b214ef55784a4f611d1d6014 Mon Sep 17 00:00:00 2001 From: andreja6 Date: Mon, 23 Apr 2018 21:08:08 +0000 Subject: [PATCH] Delete Work.cpp --- Work.cpp | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 Work.cpp diff --git a/Work.cpp b/Work.cpp deleted file mode 100644 index 57d3b35..0000000 --- a/Work.cpp +++ /dev/null @@ -1,39 +0,0 @@ -// Work.cpp : implementation file -// -#define WINVER 0x0400 -#include "stdafx.h" -#include "Work.h" - -// Work dialog - -IMPLEMENT_DYNAMIC(Work, CDialog) - -Work::Work(CWnd* pParent /*=NULL*/) - : CDialog(Work::IDD, pParent) -{ - -} - -Work::~Work() -{ -} - -void Work::DoDataExchange(CDataExchange* pDX) -{ - CDialog::DoDataExchange(pDX); -} - - -BEGIN_MESSAGE_MAP(Work, CDialog) - ON_BN_CLICKED(IDOK, &Work::OnBnClickedOk) -END_MESSAGE_MAP() - - -// Work message handlers - -void Work::OnBnClickedOk() -{ - // TODO: Add your control notification handler code here - this->DestroyWindow(); - OnOK(); -}