| 1888 static char *caps_string(gushort caps) |
1888 static char *caps_string(gushort caps) |
| 1889 { |
1889 { |
| 1890 static char buf[256], *tmp; |
1890 static char buf[256], *tmp; |
| 1891 int count = 0, i = 0; |
1891 int count = 0, i = 0; |
| 1892 gushort bit = 1; |
1892 gushort bit = 1; |
| 1893 while (bit <= 0x400) { |
1893 while (bit <= 0x800) { |
| 1894 if (bit & caps) { |
1894 if (bit & caps) { |
| 1895 switch (bit) { |
1895 switch (bit) { |
| 1896 case 0x1: |
1896 case 0x1: |
| 1897 tmp = _("Buddy Icon"); |
1897 tmp = _("Buddy Icon"); |
| 1898 break; |
1898 break; |