Mercurial > vim
annotate pixmaps/tb_find.xpm @ 33075:0346ff4c3ee7 v9.0.1824
patch 9.0.1824: Vim9: private members may be modifiable
Commit: https://github.com/vim/vim/commit/5bbcfbc4a260bc082829311086c3a1109c40f2d3
Author: Yegappan Lakshmanan <yegappan@yahoo.com>
Date: Wed Aug 30 16:38:26 2023 +0200
patch 9.0.1824: Vim9: private members may be modifiable
Problem: Vim9: private members may be modifiable
Solution: prevent modification for def function
closes: #12963
Signed-off-by: Christian Brabandt <cb@256bit.org>
Co-authored-by: Yegappan Lakshmanan <yegappan@yahoo.com>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Wed, 30 Aug 2023 16:45:10 +0200 |
parents | 3fc0f57ecb91 |
children |
rev | line source |
---|---|
7 | 1 /* XPM */ |
2 static char * tb_find_xpm[] = { | |
3 /* width height ncolors cpp [x_hot y_hot] */ | |
4 "18 18 5 1 0 0", | |
5 /* colors */ | |
6 " s none m none c none", | |
7 ". s iconColor1 m black c #000000", | |
8 "X s iconColor2 m none c #FFFFFF", | |
9 "O s iconGray2 m none c #bdbdbd", | |
10 "+ s bottomShadowColor m black c #5D6069", | |
11 /* pixels */ | |
12 " ", | |
13 " ......... ", | |
14 " .XXXXXXX.. ", | |
15 " .XXXXXXX.O. ", | |
16 " .XXXXXXX.... ", | |
17 " .XXXXXXXXXX. ", | |
18 " .XXXXXXX.... ", | |
19 " .XXXXXX.OOOO. ", | |
20 " .XXXXX.OXXOOO. ", | |
21 " .XXXXX.OXOOOO. ", | |
22 " .XXXXX.OOOOOO. ", | |
23 " .XXXXX.OOOXOO. ", | |
24 " .XXXXXX.OOOO.+ ", | |
25 " .XXXXXXX....+.. ", | |
26 " .XXXXXXXXXX.+... ", | |
27 " ............+ .. ", | |
28 " ++++++++++ ", | |
29 " "}; |