Psi Jabber Client

See this page for instructions on how to use Flyspray: http://psi-im.org/wiki/Flyspray

Please Note!

Please do not create tasks here without discussing your bug or feature request on the forums or groupchat psi@conference.psi-im.org, *and* getting explicit confirmation by a developer to add it to flyspray.
Tasklist

FS#502 - Sort group names in window: Add User

Attached to Project: Psi Jabber Client
Opened by Mircea Bardac (IceRAM) - Sunday, 02 October 2005, 06:39 GMT-4
Last edited by Martin (martin) - Sunday, 10 February 2008, 10:17 GMT-4
Task Type Feature Request
Category UserInterface
Status Closed
Assigned To No-one
Operating System All
Severity Low
Priority Normal
Reported Version 0.11-devel
Due in Version Undecided
Due Date Undecided
Percent Complete 100%
Votes 0
Private No

Details

The names of groups doesn't sort in combobox in Window: Add user.
Suggestion: sort alphabetically

http://psi.affinix.com/forums/index.php?s=&act=ST&f=4&t=3196
This task depends upon

View Dependency Graph

This task blocks these from closing
FS#772 - bite sized tasks (META TASK)
Closed by  Martin (martin)
Sunday, 10 February 2008, 10:17 GMT-4
Reason for closing:  Implemented in SVN
Comment by duryodhan (duryodhan) - Saturday, 09 February 2008, 03:32 GMT-4
This probably fixes it :

86c86,88
< cb_group->insertStringList(groups);
---
> QStringList temp=groups;
> temp.sort();
> cb_group->insertStringList(temp);
Comment by duryodhan (duryodhan) - Saturday, 09 February 2008, 03:32 GMT-4
This probably fixes it :
adduserdlg.cpp
86c86,88
< cb_group->insertStringList(groups);
---
> QStringList temp=groups;
> temp.sort();
> cb_group->insertStringList(temp);

Loading...