Identity:

- Redesigned dialog
- Fixed high CPU usage when showing reputation list
- Added todo button

UIStateHelper:
- Added new base class for easier handling of ui elements with token request (show "Loading", set enable state, ...)

RsProtectedTimer:
- Fixed compile on Windows

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6495 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2013-07-10 21:57:23 +00:00
parent e36557d542
commit f02cc51409
10 changed files with 1186 additions and 539 deletions

View file

@ -23,6 +23,7 @@
#include <QTimer>
#include <retroshare-gui/RsAutoUpdatePage.h>
#include <iostream>
#define PROTECTED_TIMER_DEBUG
@ -45,7 +46,7 @@ class RsProtectedTimer: public QTimer
}
#ifdef PROTECTED_TIMER_DEBUG
std::cerr << "Timer has passsed protection." << std::endl;
std::cerr << "Timer has passed protection." << std::endl;
#endif
QTimer::timerEvent(e) ;
}