Subversion Repositories tpanel

Rev

Rev 21 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 21 Rev 23
Line 95... Line 95...
95
            pal.color = strtoul(sCol.c_str(), 0, 16);
95
            pal.color = strtoul(sCol.c_str(), 0, 16);
96
        }
96
        }
97
 
97
 
98
        if (mColors.find(pal.name) != mColors.end())    // Don't insert color if it's already in list
98
        if (mColors.find(pal.name) != mColors.end())    // Don't insert color if it's already in list
99
        {
99
        {
100
            MSG_INFO("Ignoring color " << pal.name << " because it was read before!");
100
            MSG_TRACE("Ignoring color " << pal.name << " because it was read before!");
101
            node = reader.getNextChild();
101
            node = reader.getNextChild();
102
            pal.clear();
102
            pal.clear();
103
            continue;
103
            continue;
104
        }
104
        }
105
 
105