Skip to content

Commit bc75516

Browse files
Merge pull request #34 from OpenSourcePFCLibraries/address-visual-expert-findings
Update ShowHelp calls to reference Compiled HTML Help version of help files
2 parents 328b2d3 + 43f1524 commit bc75516

21 files changed

+57
-62
lines changed

ws_objects/examples/appexmfe/appexmfe.pbl.src/n_exampleappmanager.sru

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ of_SetUserKey ( "HKEY_CURRENT_USER\Software\Appeon\PowerBuilder\" + &
5757
String ( li_major ) + "." + String ( li_minor ) + "\PFC Examples" )
5858

5959
// The file name of the application's online help file
60-
of_SetHelpFile ( "pfcexamp.hlp" )
60+
of_SetHelpFile ( "pfcexamp.chm" )
6161

6262
// The application version
6363
of_SetVersion ( "Version " + String ( li_major ) + "." + String ( li_minor ) + ".00" )

ws_objects/pfcapsrv/pfcapsrv.pbl.src/pfc_w_find.srw

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -552,6 +552,6 @@ event clicked;call super::clicked;//////////////////////////////////////////////
552552
//
553553
//////////////////////////////////////////////////////////////////////////////
554554

555-
showHelp ("pfcdlg.hlp", topic!, 400)
555+
showHelp ("pfcdlg.chm", topic!, 400)
556556
end event
557557

ws_objects/pfcapsrv/pfcapsrv.pbl.src/pfc_w_pagesetup.srw

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -886,7 +886,7 @@ event clicked;call super::clicked;//////////////////////////////////////////////
886886
//
887887
//////////////////////////////////////////////////////////////////////////////
888888

889-
showHelp ("pfcdlg.hlp", topic!, 500)
889+
showHelp ("pfcdlg.chm", topic!, 500)
890890
end event
891891

892892
type gb_margins from u_gb within pfc_w_pagesetup

ws_objects/pfcapsrv/pfcapsrv.pbl.src/pfc_w_replace.srw

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -860,6 +860,6 @@ event clicked;call super::clicked;//////////////////////////////////////////////
860860
//
861861
//////////////////////////////////////////////////////////////////////////////
862862

863-
showHelp ("pfcdlg.hlp", topic!, 600)
863+
showHelp ("pfcdlg.chm", topic!, 600)
864864
end event
865865

ws_objects/pfcdwsrv/pfcdwsrv.pbl.src/pfc_n_cst_dwsrv_filter.sru

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -519,7 +519,7 @@ CHOOSE CASE ai_style
519519
if isValid (idw_requestor) then
520520
if len (idw_requestor.dataobject) > 0 then
521521
idw_requestor.object.datawindow.help.command = 1
522-
idw_requestor.object.datawindow.help.file = "pfcdlg.hlp"
522+
idw_requestor.object.datawindow.help.file = "pfcdlg.chm"
523523
idw_requestor.object.datawindow.help.typeid.setfilter = "300"
524524
end if
525525
end if

ws_objects/pfcdwsrv/pfcdwsrv.pbl.src/pfc_n_cst_dwsrv_sort.sru

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1164,7 +1164,7 @@ CHOOSE CASE ai_style
11641164
if isValid (idw_requestor) then
11651165
if len (idw_requestor.dataobject) > 0 then
11661166
idw_requestor.object.datawindow.help.command = 1
1167-
idw_requestor.object.datawindow.help.file = "pfcdlg.hlp"
1167+
idw_requestor.object.datawindow.help.file = "pfcdlg.chm"
11681168
idw_requestor.object.datawindow.help.typeid.setsort = "1200"
11691169
idw_requestor.object.datawindow.help.typeid.setsortexpr = "800"
11701170
end if

ws_objects/pfcdwsrv/pfcdwsrv.pbl.src/pfc_w_filterextended.srw

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1594,6 +1594,6 @@ event clicked;call super::clicked;//////////////////////////////////////////////
15941594
//
15951595
//////////////////////////////////////////////////////////////////////////////
15961596

1597-
showHelp ("pfcdlg.hlp", topic!, 100)
1597+
showHelp ("pfcdlg.chm", topic!, 100)
15981598
end event
15991599

ws_objects/pfcdwsrv/pfcdwsrv.pbl.src/pfc_w_filtersimple.srw

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1256,6 +1256,6 @@ event clicked;call super::clicked;//////////////////////////////////////////////
12561256
//
12571257
//////////////////////////////////////////////////////////////////////////////
12581258

1259-
showHelp ("pfcdlg.hlp", topic!, 200)
1259+
showHelp ("pfcdlg.chm", topic!, 200)
12601260
end event
12611261

ws_objects/pfcdwsrv/pfcdwsrv.pbl.src/pfc_w_restorerow.srw

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -644,6 +644,6 @@ event clicked;call super::clicked;//////////////////////////////////////////////
644644
//
645645
//////////////////////////////////////////////////////////////////////////////
646646

647-
showHelp ("pfcdlg.hlp", topic!, 700)
647+
showHelp ("pfcdlg.chm", topic!, 700)
648648
end event
649649

ws_objects/pfcdwsrv/pfcdwsrv.pbl.src/pfc_w_sortdragdrop.srw

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1132,6 +1132,6 @@ event clicked;call super::clicked;//////////////////////////////////////////////
11321132
//
11331133
//////////////////////////////////////////////////////////////////////////////
11341134

1135-
showHelp ("pfcdlg.hlp", topic!, 900)
1135+
showHelp ("pfcdlg.chm", topic!, 900)
11361136
end event
11371137

0 commit comments

Comments
 (0)