Show
Ignore:
Timestamp:
06/05/03 05:36:02 (6 years ago)
Author:
emostar
Message:

Fix the line spacing

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/protocol_plugin_1_3_0/qt-gui/src/ewidgets.cpp

    r3535 r3536  
    624624 
    625625  // QTextEdit::append adds a paragraph break so we don't have to. 
    626   s.sprintf("<html><body><font color=\"%s\"><b>%s%s [%c%c%c%c] %s:</b></font></body></html>", 
     626  s.sprintf("<html><body><font color=\"%s\"><b>%s%s [%c%c%c%c] %s:</b></font><br>" 
     627            "<font color=\"%s\">%s</font></body></html>", 
    627628            color, 
    628629            e->SubCommand() == ICQ_CMDxSUB_MSG ? "" : 
     
    633634            e->IsUrgent() ? 'U' : '-', 
    634635            e->IsEncrypted() ? 'E' : '-', 
    635             contactName.utf8().data() 
    636            ); 
    637   append(s); 
    638   s.sprintf("<html><body><font color=\"%s\">%s</font></body></html>", 
     636            contactName.utf8().data(), 
    639637            color, 
    640638            MLView::toRichText(messageText, true).utf8().data()