Show
Ignore:
Timestamp:
08/08/07 06:06:52 (16 months ago)
Author:
eugene
Message:

Make history reverse optional.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/qt-gui_qt4/src/mainwin.cpp

    r5113 r5115  
    490490  licqConf.ReadNum("HistoryMessageStyle", m_histMsgStyle, 0); 
    491491  licqConf.ReadBool("HistoryVerticalSpacing", m_histVertSpacing, true); 
     492  licqConf.ReadBool("HistoryReverse", m_histReverse, true); 
    492493  licqConf.ReadStr("HistoryDateFormat", szTemp, "yyyy-MM-dd hh:mm:ss"); 
    493494  m_histDateFormat = QString::fromLatin1(szTemp); 
     
    36283629  licqConf.WriteNum("HistoryMessageStyle", m_histMsgStyle); 
    36293630  licqConf.WriteBool("HistoryVerticalSpacing", m_histVertSpacing); 
     3631  licqConf.WriteBool("HistoryReverse", m_histReverse); 
    36303632  licqConf.WriteStr("HistoryDateFormat", m_histDateFormat.latin1()); 
    36313633