Changed attrstr.c to match ui_attrstr.h.

This commit is contained in:
Pietro Gagliardi 2016-12-15 13:39:19 -05:00
parent 3f48bddce0
commit 6726ab70a9
1 changed files with 4 additions and 6 deletions

View File

@ -23,17 +23,15 @@ struct uiAttributedString {
}; };
struct attr { struct attr {
int type; uiAttribute type;
uintptr_t val; uintptr_t val;
size_t start; size_t start;
size_t end; size_t end;
struct attr *next; struct attr *next;
}; };
enum { // if new entries types are added to the end of the uiAttribute enumeration, this MUST be updated!
// TODO put attr types here #define nAttrTypes (TODO + 1)
nAttrTypes,
};
static int attrHasPos(struct attr *a, size_t pos) static int attrHasPos(struct attr *a, size_t pos)
{ {
@ -234,7 +232,7 @@ static void attrsGetFor(uiAttributedString *s, struct attr **alist, size_t at)
// we want the attributes for at // we want the attributes for at
// these are the attributes of at - 1 // these are the attributes of at - 1
// if at == 0. then htese are the attributes at 0 // if at == 0. then these are the attributes at 0
if (at != 0) if (at != 0)
at--; at--;