Changeset 963 for trunk/lib/File.cc
- Timestamp:
- Dec 9, 2009, 3:58:28 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/File.cc
r938 r963 23 23 24 24 #include "Alias.h" 25 #include "Colors.h" 25 26 #include "Configuration.h" 26 27 #include "Date.h" … … 290 291 hs << Date(blame.date())("%d %b %y"); 291 292 os << "</font></td>\n<td class=\"author\">"; 292 std::stringauthor_color =293 Co nfiguration::instance().author_str_color(blame.author());294 if (!author_color.empty())295 293 const std::string& author_color = 294 Colors::instance().color_str(blame.author()); 295 assert(!author_color.empty()); 296 os << "<font color=\"#" << author_color << "\">"; 296 297 hs << blame.author(); 297 298 os << "</td>\n<td class=\"";
Note: See TracChangeset
for help on using the changeset viewer.