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:
drbob 2008-05-24 23:11:37 +00:00
parent 87b7bfadb5
commit 22bfc3e821
4 changed files with 8 additions and 4 deletions

View file

@ -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++)

View file

@ -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();