mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-02 14:16:16 -04:00
fixed link passed issue due to usin self-closign links (Patch from Asamk #3418941)
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4631 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
15758578e0
commit
6addc80e99
9 changed files with 18 additions and 18 deletions
|
@ -1173,7 +1173,7 @@ QString RSLinkClipboard::toHtml()
|
|||
|
||||
QString res ;
|
||||
for(int i = 0; i < links.size(); ++i)
|
||||
res += links[i].toHtml() + "<br/>" ;
|
||||
res += links[i].toHtml() + "<br>" ;
|
||||
|
||||
return res ;
|
||||
}
|
||||
|
@ -1185,7 +1185,7 @@ QString RSLinkClipboard::toHtmlFull()
|
|||
|
||||
QString res ;
|
||||
for(int i = 0; i < links.size(); ++i)
|
||||
res += links[i].toHtmlFull() + "<br/>" ;
|
||||
res += links[i].toHtmlFull() + "<br>" ;
|
||||
|
||||
return res ;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue