mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-07-12 03:55:53 +02:00

packagetabs: add "View project source" menu item ........ packagetabs: implement i18n, HU translation. Issue #29173. Patch by Peter Gabor ........ packagetabs: add "Copy File Path To Clipboard" menu command ........ PackageTabs: added Russian translation ........ git-svn-id: branches/fixes_1_6@50782 -
22 lines
399 B
ObjectPascal
22 lines
399 B
ObjectPascal
{ This file was automatically created by Lazarus. Do not edit!
|
|
This source is only used to compile and install the package.
|
|
}
|
|
|
|
unit packagetabs;
|
|
|
|
interface
|
|
|
|
uses
|
|
packagetabs_impl, packagetabsstr, LazarusPackageIntf;
|
|
|
|
implementation
|
|
|
|
procedure Register;
|
|
begin
|
|
RegisterUnit('packagetabs_impl', @packagetabs_impl.Register);
|
|
end;
|
|
|
|
initialization
|
|
RegisterPackage('packagetabs', @Register);
|
|
end.
|