diff mcabber/src/screen.c @ 785:7e0562e3bc83

Replace color_highlight with color_msgout
author Mikael Berthe <mikael@lilotux.net>
date Sun, 02 Apr 2006 23:11:55 +0200
parents 057ffe7c43dc
children 5d4ad1d77da4
line wrap: on
line diff
--- a/mcabber/src/screen.c	Sun Apr 02 22:45:05 2006 +0200
+++ b/mcabber/src/screen.c	Sun Apr 02 23:11:55 2006 +0200
@@ -143,7 +143,7 @@
   const char *colors[] = {
     "", "",
     "general",
-    "highlight",
+    "msgout",
     "status",
     "roster",
     "rostersel",
@@ -190,7 +190,7 @@
           init_pair(i+1, ((color) ? FindColor(color) : COLOR_WHITE),
                     FindColor(background));
           break;
-      case COLOR_HIGHLIGHT:
+      case COLOR_MSGOUT:
           init_pair(i+1, ((color) ? FindColor(color) : COLOR_CYAN),
                     FindColor(background));
           break;
@@ -483,7 +483,7 @@
     // You need to set it to the whole prefix length + 1
     if (line) {
       if (line->flags & HBB_PREFIX_HLIGHT)
-        wattrset(win_entry->win, get_color(COLOR_HIGHLIGHT));
+        wattrset(win_entry->win, get_color(COLOR_MSGOUT));
 
       if (line->timestamp) {
         strftime(date, 30, "%m-%d %H:%M", localtime(&line->timestamp));