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

« back to all changes in this revision

Viewing changes to ide/idewindowhelp.pas

  • Committer: Package Import Robot
  • Author(s): Paul Gevers, Abou Al Montacir, Paul Gevers
  • Date: 2014-02-22 10:25:57 UTC
  • mfrom: (1.1.11)
  • Revision ID: package-import@ubuntu.com-20140222102557-ors9d31r84nz31jq
Tags: 1.2~rc2+dfsg-1
[ Abou Al Montacir ]
* New upstream pre-release.
  + Moved ideintf to components directory.
  + Added new package cairocanvas.
* Remove usage of depreciated parameters form of find. (Closes: Bug#724776)
* Bumped standard version to 3.9.5.
* Clean the way handling make files generation and removal.

[ Paul Gevers ]
* Remove nearly obsolete bzip compression for binary packages
  (See https://lists.debian.org/debian-devel/2014/01/msg00542.html)
* Update d/copyright for newly added dir in examples and components
* Update Vcs-* fields with new packaging location
* Update d/watch file to properly (Debian way) change upstreams versions
* Prevent 46MB of package size by sym linking duplicate files
* Patches
  - refresh to remove fuzz
  - add more Lintian found spelling errors
  - new patch to add shbang to two scripts in lazarus-src
* Drop lcl-# from Provides list of lcl-units-#
* Make lazarus-ide-qt4-# an arch all until it really contains stuff
* Make all metapackages arch all as the usecase for arch any doesn't
  seem to warrant the addition archive hit
* Fix permissions of non-scripts in lazarus-src-#

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
 
32
32
uses
33
33
  Classes, SysUtils, LCLProc, Controls, FileUtil, Dialogs, HelpIntfs,
34
 
  LazConfigStorage, EnvironmentOpts, IDEOptionDefs;
 
34
  LazConfigStorage, IDEDialogs, EnvironmentOpts, IDEOptionDefs,
 
35
  LazarusIDEStrConsts;
35
36
  
36
37
type
37
38
 
133
134
    end;
134
135
  except
135
136
    on E: Exception do begin
136
 
      MessageDlg('Read error','Error reading file '+Filename+#13+E.Message,
137
 
        mtError,[mbOk],0);
 
137
      IDEMessageDialog('Read error','Error reading file '+Filename+LineEnding+E.Message,
 
138
        mtError,[mbOk]);
138
139
    end;
139
140
  end;
140
141
end;
157
158
    end;
158
159
  except
159
160
    on E: Exception do begin
160
 
      MessageDlg('Write error','Error writing file '+Filename+#13+E.Message,
161
 
        mtError,[mbOk],0);
 
161
      IDEMessageDialog(lisCodeToolsDefsWriteError, Format(lisErrorWritingFile2,
 
162
        [Filename+LineEnding+E.Message]),
 
163
        mtError,[mbOk]);
162
164
    end;
163
165
  end;
164
166
end;