lazarus/components/packagetabs/packagetabs.pas
maxim 7cbd1f6050 Merged revision(s) 50733 #777d59b1c9, 50754 #5bdc000349, 50762 #780ce482b8, 50781 #a04860897f from trunk:
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 -
2015-12-13 22:40:35 +00:00

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.