server version bump, minor chat view fix

This commit is contained in:
Max-Wilhelm Bruker 2011-02-15 23:01:24 +01:00
parent d4f600393f
commit 713ebece78
3 changed files with 6 additions and 5 deletions

View file

@ -10,7 +10,7 @@ ChatView::ChatView(const QString &_ownName, QWidget *parent)
setTextInteractionFlags(Qt::TextSelectableByMouse); setTextInteractionFlags(Qt::TextSelectableByMouse);
} }
void ChatView::appendMessage(const QString &sender, const QString &message) void ChatView::appendMessage(QString sender, const QString &message)
{ {
QTextCursor cursor(document()->lastBlock()); QTextCursor cursor(document()->lastBlock());
cursor.movePosition(QTextCursor::End); cursor.movePosition(QTextCursor::End);
@ -31,7 +31,9 @@ void ChatView::appendMessage(const QString &sender, const QString &message)
} else } else
senderFormat.setForeground(Qt::blue); senderFormat.setForeground(Qt::blue);
cursor.setCharFormat(senderFormat); cursor.setCharFormat(senderFormat);
cursor.insertText(sender + " "); if (!sender.isEmpty())
sender.append(" ");
cursor.insertText(sender);
QTextCharFormat messageFormat; QTextCharFormat messageFormat;
if (sender.isEmpty()) if (sender.isEmpty())
@ -39,6 +41,5 @@ void ChatView::appendMessage(const QString &sender, const QString &message)
cursor.setCharFormat(messageFormat); cursor.setCharFormat(messageFormat);
cursor.insertText(message); cursor.insertText(message);
verticalScrollBar()->setValue(verticalScrollBar()->maximum()); verticalScrollBar()->setValue(verticalScrollBar()->maximum());
} }

View file

@ -12,7 +12,7 @@ private:
QString ownName; QString ownName;
public: public:
ChatView(const QString &_ownName, QWidget *parent = 0); ChatView(const QString &_ownName, QWidget *parent = 0);
void appendMessage(const QString &sender, const QString &message); void appendMessage(QString sender, const QString &message);
}; };
#endif #endif

View file

@ -235,4 +235,4 @@ void Servatrice::statusUpdate()
execSqlQuery(query); execSqlQuery(query);
} }
const QString Servatrice::versionString = "Servatrice 0.20110127"; const QString Servatrice::versionString = "Servatrice 0.20110215";