Show
Ignore:
Timestamp:
11/06/06 04:45:07 (2 years ago)
Author:
erijo
Message:

Patch from Anders Olofsson to allow configuration of notice color.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/qt-gui/src/mainwin.cpp

    r4734 r4736  
    452452  licqConf.ReadStr("SentHistoryColor", szTemp, "light blue"); 
    453453  m_colorSntHistory = QColor(szTemp); 
     454  licqConf.ReadStr("NoticeColor", szTemp, "green"); 
     455  m_colorNotice = QColor(szTemp); 
    454456  licqConf.ReadStr("TabFontColor", szTemp,  
    455457      QApplication::palette(this).active().text().name()); 
     
    35813583  licqConf.WriteStr("SentMessageColor", m_colorSnt.name()); 
    35823584  licqConf.WriteStr("SentHistoryColor", m_colorSntHistory.name()); 
     3585  licqConf.WriteStr("NoticeColor", m_colorNotice.name()); 
    35833586  licqConf.WriteStr("TabFontColor", m_colorTab.name()); 
    35843587  licqConf.WriteStr("TabOnTypingColor", m_colorTabTyping.name());