Changeset 103
- Timestamp:
- Sep 23, 2016, 10:59:16 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 3 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Install/deb/build-deb-amd64.sh
r79 r103 6 6 7 7 cat >AcronymDecoder/DEBIAN/control << EOF 8 Package: AcronymDecoder9 Version: 1. 2.08 Package: acronym-decoder 9 Version: 1.3.0 10 10 Section: custom 11 11 Priority: optional … … 14 14 Maintainer: Chronos <robie@centrum.cz> 15 15 Description: A tool for quick searching of acronym or abbreviaton meaning 16 Also allows to edit custom acronym or import acronyms from defined sources. 16 17 HomePage: http://svn.zdechov.net/trac/AcronymDecoder 17 18 EOF … … 27 28 mkdir -p AcronymDecoder/usr/share/pixmaps 28 29 cp ../../Images/Acronym\ Decoder.png AcronymDecoder/usr/share/pixmaps/AcronymDecoder.png 29 dpkg-deb --build AcronymDecoder 30 mkdir -p AcronymDecoder/usr/share/doc/acronym-decoder 31 cp AcronymDecoder/debian/changelog AcronymDecoder/usr/share/doc/acronym-decoder/changelog 32 gzip -f --best AcronymDecoder/usr/share/doc/acronym-decoder/changelog 33 cp AcronymDecoder/debian/copyright AcronymDecoder/usr/share/doc/acronym-decoder/copyright 34 fakeroot dpkg-deb --build AcronymDecoder -
trunk/Install/deb/build-deb-i386.sh
r79 r103 6 6 7 7 cat >AcronymDecoder/DEBIAN/control << EOF 8 Package: AcronymDecoder9 Version: 1. 2.08 Package: acronym-decoder 9 Version: 1.3.0 10 10 Section: custom 11 11 Priority: optional … … 13 13 Essential: no 14 14 Maintainer: Chronos <robie@centrum.cz> 15 Description: A tool for quick searching of acronym meaning 15 Description: A tool for quick searching of acronym or abbreviaton meaning 16 Also allows to edit custom acronym or import acronyms from defined sources. 16 17 HomePage: http://svn.zdechov.net/trac/AcronymDecoder 17 18 EOF … … 27 28 mkdir -p AcronymDecoder/usr/share/pixmaps 28 29 cp ../../Images/Acronym\ Decoder.png AcronymDecoder/usr/share/pixmaps/AcronymDecoder.png 29 dpkg-deb --build AcronymDecoder 30 mkdir -p AcronymDecoder/usr/share/doc/acronym-decoder 31 cp AcronymDecoder/debian/changelog AcronymDecoder/usr/share/doc/acronym-decoder/changelog 32 gzip -f --best AcronymDecoder/usr/share/doc/acronym-decoder/changelog 33 cp AcronymDecoder/debian/copyright AcronymDecoder/usr/share/doc/acronym-decoder/copyright 34 fakeroot dpkg-deb --build AcronymDecoder 35 -
trunk/Packages/Common/UListViewSort.pas
r100 r103 9 9 uses 10 10 {$IFDEF Windows}Windows, CommCtrl, {$ENDIF}Classes, Graphics, ComCtrls, SysUtils, 11 Controls, DateUtils, Dialogs, SpecializedList, Forms, Grids, StdCtrls, ExtCtrls; 11 Controls, DateUtils, Dialogs, SpecializedList, Forms, Grids, StdCtrls, ExtCtrls, 12 LclIntf, LMessages, LclType, LResources; 12 13 13 14 type … … 47 48 procedure SetColumn(const Value: Integer); 48 49 procedure SetOrder(const Value: TSortOrder); 50 {$IFDEF WINDOWS} 49 51 procedure NewListViewWindowProc(var AMsg: TMessage); 52 {$ENDIF} 50 53 public 51 54 List: TListObject; … … 180 183 { TListViewSort } 181 184 185 {$IFDEF WINDOWS} 182 186 procedure TListViewSort.NewListViewWindowProc(var AMsg: TMessage); 183 187 var 184 188 vColWidth: Integer; 185 vMsgNotify: T WMNotify absolute AMsg;189 vMsgNotify: TLMNotify absolute AMsg; 186 190 Code: Integer; 187 191 begin … … 213 217 end; 214 218 end; 219 {$ENDIF} 215 220 216 221 procedure TListViewSort.DoColumnBeginResize(const AColIndex: Integer); … … 261 266 FListView.OnClick := ListViewClick; 262 267 FOldListViewWindowProc := FListView.WindowProc; 268 {$IFDEF WINDOWS} 263 269 FListView.WindowProc := NewListViewWindowProc; 270 {$ENDIF} 264 271 end; 265 272
Note:
See TracChangeset
for help on using the changeset viewer.