-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
hello again,
when you click the system menu-> user functions-> edit groups
the "Edit Groups" window pops up.
there you can rename a group by clicking on the button "Edit Name". While
editing, the button changes it's name to "Cancel". When finished it does not
change back to "Edit Name", but now its name is "Edit"...
This inconsistency is fixed by my attached mini-patch.
Please could someone apply it? Maybe Jon, when he's back from vacation next
week?
Bye,
Thomas
- --
_________________________________________________
No I Don't Yahoo!
And I'm getting pretty sick of being asked if I do.
_________________________________________________
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: For info see http://www.gnupg.org
iD8DBQE9bM6G+83LmoKU5MARAoqBAKC31Bdxs3UIzdXADXQ8Dsu6Lz8zKQCgs6At
Y8Ap3L0PO0JduJrspgL9sDo=
=K9kQ
-----END PGP SIGNATURE-----
Index: editgrp.cpp
===================================================================
RCS file: /cvsroot/licq/qt-gui/src/editgrp.cpp,v
retrieving revision 1.20
diff -u -3 -p -r1.20 editgrp.cpp
--- editgrp.cpp 16 Apr 2000 21:52:38 -0000 1.20
+++ editgrp.cpp 28 Aug 2002 13:10:12 -0000
@@ -202,7 +202,7 @@ void EditGrpDlg::slot_editok()
RefreshList();
lstGroups->setEnabled(true);
- btnEdit->setText(tr("Edit"));
+ btnEdit->setText(tr("Edit Name"));
edtName->clear();
edtName->setEnabled(false);
disconnect(btnEdit, SIGNAL(clicked()), this, SLOT(slot_editok()));
@@ -213,7 +213,7 @@ void EditGrpDlg::slot_editok()
void EditGrpDlg::slot_editcancel()
{
lstGroups->setEnabled(true);
- btnEdit->setText(tr("Edit"));
+ btnEdit->setText(tr("Edit Name"));
edtName->clear();
edtName->setEnabled(false);
disconnect(btnEdit, SIGNAL(clicked()), this, SLOT(slot_editcancel()));