mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-09 01:25:17 -04:00
Final Changes for V0.4.08a release:
* Updated Version numbers. * Added chat styles to installer. * Fixed .at() call on map -> doesn't work on windows/MacOSX. * Tweaked default font back to 10 for chat. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@564 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
87b7bfadb5
commit
22bfc3e821
4 changed files with 8 additions and 4 deletions
|
@ -170,7 +170,7 @@ void BlogDialog::update(void)
|
|||
std::multimap<long int, std::string>::reverse_iterator blogIt = blogs[*it].rbegin();
|
||||
addUser(*it); // add usr to Qwidget tree
|
||||
|
||||
if(blogs.at(*it).empty())
|
||||
if(blogs[*it].empty())
|
||||
continue;
|
||||
|
||||
for( ; blogIt != blogs[*it].rend(); blogIt++)
|
||||
|
|
|
@ -111,7 +111,7 @@ PopupChatDialog::PopupChatDialog(std::string id, std::string name,
|
|||
ui.fontButton->setMenu(fontmenu);*/
|
||||
|
||||
mCurrentColor = Qt::black;
|
||||
mCurrentFont = QFont("Comic Sans MS", 12);
|
||||
mCurrentFont = QFont("Comic Sans MS", 10);
|
||||
|
||||
colorChanged(mCurrentColor);
|
||||
setFont();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue