~ubuntu-branches/ubuntu/vivid/lazarus/vivid-proposed

« back to all changes in this revision

Viewing changes to ide/main.pp

  • Committer: Package Import Robot
  • Author(s): Paul Gevers, Abou Al Montacir, Paul Gevers
  • Date: 2014-04-25 12:57:26 UTC
  • mfrom: (1.1.12)
  • Revision ID: package-import@ubuntu.com-20140425125726-6zkdcnnbbleuuvwj
Tags: 1.2+dfsg-1
[ Abou Al Montacir ]
* Packaged QT4 based IDE and LCL units.

[ Paul Gevers ]
* New upstream release
* Drop obsolete patches + refresh spell_errors.diff
* Update dependencies and description for QT4 changes
* Improve deduplication in d/rules (adds lcl-qt4 -> lcl-gtk2 -> lcl-nogui)

Show diffs side-by-side

added added

removed removed

Lines of Context:
4504
4504
  try
4505
4505
    InputHistories.ApplyFileDialogSettings(OpenDialog);
4506
4506
    OpenDialog.Title:=lisChooseDelphiUnit;
 
4507
    OpenDialog.Options:=OpenDialog.Options+[ofPathMustExist,ofFileMustExist,ofAllowMultiSelect];
4507
4508
    OpenDialog.Filter:=lisDelphiUnit+' (*.pas)|*.pas|'+
4508
4509
                       dlgAllFiles+' ('+GetAllFilesMask+')|' + GetAllFilesMask;
4509
 
    OpenDialog.Options:=OpenDialog.Options+[ofAllowMultiSelect];
4510
4510
    if InputHistories.LastConvertDelphiUnit<>'' then begin
4511
4511
      OpenDialog.InitialDir:=ExtractFilePath(InputHistories.LastConvertDelphiUnit);
4512
4512
      OpenDialog.Filename  :=ExtractFileName(InputHistories.LastConvertDelphiUnit);
4541
4541
  try
4542
4542
    InputHistories.ApplyFileDialogSettings(OpenDialog);
4543
4543
    OpenDialog.Title:=lisChooseDelphiProject;
 
4544
    OpenDialog.Options:=OpenDialog.Options+[ofPathMustExist,ofFileMustExist];
4544
4545
    OpenDialog.Filter:=lisDelphiProject+' (*.dpr)|*.dpr|'+
4545
4546
                       lisLazarusProject+' (*.lpr)|*.lpr|'+
4546
4547
                       dlgAllFiles+' ('+GetAllFilesMask+')|' + GetAllFilesMask;
4570
4571
  try
4571
4572
    InputHistories.ApplyFileDialogSettings(OpenDialog);
4572
4573
    OpenDialog.Title:=lisChooseDelphiPackage;
 
4574
    OpenDialog.Options:=OpenDialog.Options+[ofPathMustExist,ofFileMustExist];
4573
4575
    OpenDialog.Filter:=lisDelphiPackage+' (*.dpk)|*.dpk|'+
4574
4576
                       dlgAllFiles+' ('+GetAllFilesMask+')|' + GetAllFilesMask;
4575
4577
    if InputHistories.LastConvertDelphiPackage<>'' then begin