24c24
< // Copyright (C) 1995,1996,1997,1998  Bruce E. Wampler                               //
---
> // Copyright (C) 1995,1996,1997  Bruce E. Wampler                               //
63,64c63,64
< #define V_VersMinor 17
< #define V_Version "V 1.17 - 2/1/98"
---
> #define V_VersMinor 16
> #define V_Version "V 1.16 - 1/20/97"
212a213
>     const CmdAttribute CA_Multi = 0x1000;	// Multiple selection for lists
216d216
<     const CmdAttribute CA_Size = 0x1000;        // size specified in size element
120c120
< 	virtual void MouseMotion(int /* x */, int /* y */) {}	// no button: Mouse Moved to x,y
---
> 	virtual void MouseMotion(int x, int y) {}	// no button: Mouse Moved to x,y
54c54
< 	virtual void SetCmdStr(const char* s) {}
---
> 	virtual void SetCmdStr(char* s) {}
23c23
<     const int MAX_LIST = 32;	// max items in the list
---
>     const int MAX_LIST = 8;	// put 8 items in the list
65c65
< 	char* _workList[MAX_LIST + 1];		// we will make up to a 32 item list
---
> 	char* _workList[9];		// we will make an 8 item list
70d69
< 	int _listRows;			// how many rows user wanted (8 def)
43a44
> 	char* _mdStrVal;
53c53
< 	virtual int GetPaneValue(ItemVal /* id */, int& /* v */) {return 0;}
---
> 	virtual int GetPaneValue(ItemVal id, int& v) {return 0;}
55c55
< 	virtual void SetPaneValue(ItemVal /* id */, int /* v */, ItemSetType /* st */) {}
---
> 	virtual void SetPaneValue(ItemVal id, int v, ItemSetType st) {}
57c57
< 	virtual void SetPaneString(ItemVal /* id */, char* /* s */) {}
---
> 	virtual void SetPaneString(ItemVal id, char * s) {}
59c59
< 	virtual void ShowPane(int /* OnOrOff */) {}
---
> 	virtual void ShowPane(int OnOrOff) {}
68,69c68
< 	virtual int BeginPrinting(char* filename = 0, int ask = 1, int isColor = 0);
< //	virtual int BeginPrinting();
---
> 	virtual int BeginPrinting();
21c21
< 	  {added = 0; df = 0;}
---
> 	  {added = 0;}
23,24c23,24
< 	  {added = 0; df = 0;}
< 	~vReplyDialog() { if (df != 0) delete [] df;}
---
> 	  {added = 0;}
> 	~vReplyDialog() {}
26c26
< 	int Reply(const char* msg, char* reply, const int maxlen, const char* dflt="");
---
> 	int Reply(const char* msg, char* reply, const int maxlen);
32d31
< 	virtual void DialogDisplayed();
35d33
< 	char* df;
