Skip to content

Commit e04eb0a

Browse files
committed
Merge pull request #3 from DannyCork/master
Cosmetic changes: mainly copyright and about page url
2 parents 7214355 + e98b73c commit e04eb0a

File tree

4 files changed

+20
-13
lines changed

4 files changed

+20
-13
lines changed

PDW.cpp

+6-3
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
// PH : Peter Hunt
2222
// RAH: Rutger A. Heunks
2323
// AVE: Andreas Verhoeven
24+
// DD : Danny D.
2425
//
2526
// 06/04/2003 PH: Added Short Instructions
2627
// 07/04/2003 PH: Short Instructions / Frames optional via menu
@@ -254,7 +255,9 @@
254255
// 24/03/2010 : Version 2.60 released!!
255256
//
256257
// 10/08/2010 : Version 3.0 released!!
257-
//
258+
259+
// 13/7/2013 DD: Updated About. web url.
260+
// 13/7/2013 DD: Version 3.12 released!
258261
//
259262
// FILTERS.INI lines :
260263
//
@@ -408,7 +411,7 @@ time_t tStarted; // Contains the time when PDW was started
408411
// If copy upper/lower pane or just copy is successful then this flag is set to TRUE.
409412
bool bOK_to_save=false;
410413

411-
char *pdw_version = "PDW v3.11b15"; // Current version info
414+
char *pdw_version = "PDW v3.12"; // Current version info
412415

413416
// RAH: record and playback stuff
414417
OPENFILENAME openplayback;
@@ -2801,7 +2804,7 @@ BOOL FAR PASCAL AboutDlgProc(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
28012804
switch (LOWORD(wParam))
28022805
{
28032806
case IDC_WEBSITE:
2804-
ShellExecute(NULL, "open", "http://www.gsm-antennes.nl/PDW", NULL, NULL, SW_SHOWNORMAL);
2807+
ShellExecute(NULL, "open", "http://www.discriminator.nl/pdw/index-en.html", NULL, NULL, SW_SHOWNORMAL);
28052808

28062809
// fall through
28072810

Readme

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ PDW - POCSAG, FLEX, ACARS, MOBITEX & ERMES Decoder
22

33
Copyright (c) 2001 - 2004 Jason Petty
44
Copyright (c) 2004 - 2010 Peter Hunt
5+
Open sourced 2013 - GNU GENERAL PUBLIC LICENSE
56

67
PDW has been developed with Visual C++ 6.0. You may have to make adaptations to compile it with newer C++ versions.
78

Rsrc.rc

+12-9
Original file line numberDiff line numberDiff line change
@@ -167,22 +167,24 @@ END
167167
// Dialog
168168
//
169169

170-
ABOUTDLGBOX DIALOG DISCARDABLE 10, 10, 270, 87
170+
ABOUTDLGBOX DIALOG DISCARDABLE 10, 10, 282, 156
171171
STYLE DS_MODALFRAME | DS_3DLOOK | WS_POPUP | WS_VISIBLE | WS_CAPTION |
172172
WS_SYSMENU
173173
CAPTION "About..."
174174
FONT 8, "Verdana"
175175
BEGIN
176-
GROUPBOX "",IDC_STATIC,2,0,265,83
177-
LTEXT "PDW version",IDC_VERSION,86,15,72,8
176+
GROUPBOX "",IDC_STATIC,0,0,75,114,NOT WS_VISIBLE
177+
LTEXT "PDW version",IDC_VERSION,81,6,72,8
178178
LTEXT "POCSAG, FLEX, ACARS, MOBITEX && ERMES Decoder",
179-
IDC_STATIC,86,30,175,8
180-
LTEXT "Copyright (c) 2001 - 2004 Jason Petty",IDC_STATIC,86,45,
179+
IDC_STATIC,78,19,175,8
180+
LTEXT "Copyright (c) 2001 - 2004 Jason Petty",IDC_STATIC,79,33,
181181
126,8
182-
LTEXT "2004 - 2010 Peter Hunt",IDC_STATIC,132,55,100,8
182+
LTEXT "2004 - 2010 Peter Hunt",IDC_STATIC,122,45,100,8
183183
LTEXT "Win2k/XP RS232 support by: Herman Withaar",IDC_STATIC,
184-
86,69,152,8
185-
PUSHBUTTON "Visit PDW website",IDC_WEBSITE,7,64,68,15
184+
113,106,152,8
185+
PUSHBUTTON "Visit PDW website",IDC_WEBSITE,121,68,68,15
186+
LTEXT "2013 GNU GENERAL PUBLIC LICENSE",IDC_STATIC,124,57,124,
187+
8
186188
END
187189

188190
CLEARSCREENDLGBOX DIALOG DISCARDABLE 30, 20, 113, 66
@@ -1112,7 +1114,8 @@ GUIDELINES DESIGNINFO DISCARDABLE
11121114
BEGIN
11131115
ABOUTDLGBOX, DIALOG
11141116
BEGIN
1115-
RIGHTMARGIN, 267
1117+
RIGHTMARGIN, 265
1118+
BOTTOMMARGIN, 114
11161119
END
11171120

11181121
DEBUGDLGBOX, DIALOG

ermes.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ int ERMES::nOnes(int k)
114114
*/
115115
int ERMES::lOnes(long int k)
116116
{
117-
int kt;
117+
/*int kt;*/
118118
for (int i=0, kt=0; i<32; i++)
119119
{
120120
if ((k & 0x0001l) != 0l) kt++;

0 commit comments

Comments
 (0)