Printers, fix dialogs title (cups/linux), issue #14186

git-svn-id: trunk@41116 -
This commit is contained in:
jesus 2013-05-10 18:18:36 +00:00
parent cfa31199d1
commit 34d14fbf7a

View File

@ -63,6 +63,7 @@ begin
Dlg.Options := Self.Options;
Dlg.PrintRange := Self.PrintRange;
Dlg.cbCollate.Checked := Self.Collate;
Dlg.Caption := Self.Title;
if FromPage<1 then FromPage:=1;
if ToPage<FromPage then ToPage:=FromPage;
Dlg.edRange.Text := IntToStr(Self.FromPage) +'-'+ IntToStr(Self.ToPage);
@ -112,6 +113,7 @@ var
Dlg: TDlgPageSetup;
begin
Dlg:=TdlgPageSetup.Create(nil);
Dlg.Caption:=Title;
try
Result:=(Dlg.ShowModal=mrOk);
if Result then begin