Minor tweaks

This commit is contained in:
Andy McFadden 2015-01-13 13:43:48 -08:00
parent ed2d16a016
commit b3780261c4
3 changed files with 2 additions and 5 deletions

View File

@ -9,8 +9,6 @@
#ifndef APP_CHOOSEDIRDIALOG #ifndef APP_CHOOSEDIRDIALOG
#define APP_CHOOSEDIRDIALOG #define APP_CHOOSEDIRDIALOG
#include "../util/UtilLib.h"
#include "resource.h"
#include <afxshellmanager.h> #include <afxshellmanager.h>

View File

@ -13,7 +13,6 @@
#include "Main.h" #include "Main.h"
#include "DiskArchive.h" #include "DiskArchive.h"
#include "Help/PopUpIds.h" #include "Help/PopUpIds.h"
#include <process.h>
/* magic global that MFC finds (or that finds MFC) */ /* magic global that MFC finds (or that finds MFC) */
MyApp gMyApp; MyApp gMyApp;
@ -26,7 +25,7 @@ DebugLog* gDebugLog;
* This is the closest thing to "main" that we have, but we * This is the closest thing to "main" that we have, but we
* should wait for InitInstance for most things. * should wait for InitInstance for most things.
*/ */
MyApp::MyApp(LPCTSTR lpszAppName) : CWinAppEx(true /*lpszAppName*/) MyApp::MyApp() : CWinAppEx()
{ {
gDebugLog = new DebugLog(L"C:\\src\\cplog.txt"); gDebugLog = new DebugLog(L"C:\\src\\cplog.txt");

View File

@ -23,7 +23,7 @@
class MyApp: public CWinAppEx class MyApp: public CWinAppEx
{ {
public: public:
MyApp(LPCTSTR lpszAppName = NULL); MyApp();
virtual ~MyApp(void); virtual ~MyApp(void);
#ifdef CAN_UPDATE_FILE_ASSOC #ifdef CAN_UPDATE_FILE_ASSOC