Mercurial > pidgin
annotate pixmaps/close.xpm @ 4160:fcc6db86f5c7
[gaim-migrate @ 4389]
Nicola's Lichtmaier (niqueco) writes:
"Several things:
I've added some "const"s here and there.
I've declared some functions as "pure" or "const"
(helps gcc to optimize the code).
I've declared debug_printf so that gcc can check the
printf format string (this makes visible several
formatting bugs!)
I've changed minor things in util.c (why having an
useless extra call to g_strncasecmp?).
And I've added some _() as usual.
I hope some of this gets checked in, if not all."
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Tue, 31 Dec 2002 18:19:14 +0000 |
parents | 4a1181b764b6 |
children |
rev | line source |
---|---|
586 | 1 /* XPM */ |
2 static char * close_xpm[] = { | |
3 "24 24 2 1", | |
4 " c None", | |
5 ". c #000000", | |
6 " ", | |
7 " ", | |
8 " ", | |
9 " ", | |
10 " ", | |
11 " ", | |
12 " . .. ", | |
13 " .. .... ", | |
14 " .. ... ", | |
15 " ..... ", | |
16 " ... ", | |
17 " .... ", | |
18 " ...... ", | |
19 " .. .... ", | |
20 " .. .... ", | |
21 " . .. ", | |
22 " ", | |
23 " ", | |
24 " ", | |
25 " ", | |
26 " ", | |
27 " ", | |
28 " ", | |
29 " "}; |