Removed new lines of the QLineEdit input fields after input in forum, channel, message and group.

Removed size hint of he trees to show erroneous texts.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3768 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2010-11-09 19:57:05 +00:00
parent 49a9268b9e
commit b79341503e
13 changed files with 54 additions and 38 deletions

View file

@ -21,6 +21,8 @@
#include <QMessageBox>
#include "util/misc.h"
#include "CreateForum.h"
#include <retroshare/rsforums.h>
@ -67,7 +69,7 @@ void CreateForum::newForum()
void CreateForum::createForum()
{
QString name = ui.forumName->text();
QString name = misc::removeNewLine(ui.forumName->text());
QString desc = ui.forumDesc->toPlainText(); //toHtml();
uint32_t flags = 0;