[PC-BSD Commits] r8241 - pcbsd/current/src-qt4/pc-usermanager
svn at pcbsd.org
svn at pcbsd.org
Tue Dec 21 06:21:19 PST 2010
Author: kris
Date: 2010-12-21 06:21:18 -0800 (Tue, 21 Dec 2010)
New Revision: 8241
Modified:
pcbsd/current/src-qt4/pc-usermanager/adddlgcode.cpp
Log:
Fixed missing connection to group selection
Modified: pcbsd/current/src-qt4/pc-usermanager/adddlgcode.cpp
===================================================================
--- pcbsd/current/src-qt4/pc-usermanager/adddlgcode.cpp 2010-12-21 14:02:40 UTC (rev 8240)
+++ pcbsd/current/src-qt4/pc-usermanager/adddlgcode.cpp 2010-12-21 14:21:18 UTC (rev 8241)
@@ -37,7 +37,8 @@
red = QColor(255, 78, 78);
orange = QColor(255, 211, 65);
- connect(groupGroup, SIGNAL(clicked(int)), this, SLOT(changeGroupBox()));
+ connect(groupRadioOld, SIGNAL(clicked()), this, SLOT(changeGroupBox()));
+ connect(groupRadioNew, SIGNAL(clicked()), this, SLOT(changeGroupBox()));
connect(usernameBox, SIGNAL(textChanged(const QString&)), this, SLOT(usernameChanged()));
connect(passBox, SIGNAL(textChanged(const QString&)), this, SLOT(passwordChanged()));
connect(confirmPassBox, SIGNAL(textChanged(const QString&)), this, SLOT(passwordChanged()));
More information about the Commits
mailing list