- Updated French translation unit (obsolete entries removed)

- GeneralPage.ui : display seconds after the number in the spinbox
- ConnectFriendWizard.ui : correct typoes
- DetailsDialog.ui : add a missing colon
- ChanMsgItem.ui and PopupChatDialog.ui : set "TextLabel" as not to translate
- RSTreeWidget : fix compiler warning by removing useless const in return type


git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3815 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
leander-256 2010-11-18 07:57:46 +00:00
parent 8c2f06d963
commit aa67c06d3e
8 changed files with 417 additions and 5899 deletions

View file

@ -30,7 +30,7 @@ void RSTreeWidgetItemCompareRole::addRole(int column, int role)
insert(column, role);
}
const int RSTreeWidgetItemCompareRole::findRole(const int column) const
int RSTreeWidgetItemCompareRole::findRole(const int column) const
{
RSTreeWidgetItemCompareRole::const_iterator it = find(column);
if (it == end()) {

View file

@ -32,7 +32,7 @@ public:
RSTreeWidgetItemCompareRole();
void addRole(int column, int role);
const int findRole(const int column) const;
int findRole(const int column) const;
};
class RSTreeWidgetItem : public QTreeWidgetItem