Allow team and hh name length be up to 64 letters length
authorunc0rr
Fri, 15 Aug 2008 07:49:52 +0000
changeset 1216 df1b19976e28
parent 1215 0c1c294c0f7e
child 1217 d6d91eec00f2
Allow team and hh name length be up to 64 letters length
QTfrontend/pages.cpp
--- a/QTfrontend/pages.cpp	Fri Aug 15 07:22:55 2008 +0000
+++ b/QTfrontend/pages.cpp	Fri Aug 15 07:49:52 2008 +0000
@@ -104,7 +104,7 @@
 	GBoxTeam->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
 	QGridLayout * GBTLayout = new QGridLayout(GBoxTeam);
 	TeamNameEdit = new QLineEdit(GBoxTeam);
-	TeamNameEdit->setMaxLength(15);
+	TeamNameEdit->setMaxLength(64);
 	GBTLayout->addWidget(TeamNameEdit, 0, 0, 1, 0);
 
 	pageLayout->addWidget(GBoxTeam, 0, 0);
@@ -117,7 +117,7 @@
 	{
 		HHNameEdit[i] = new QLineEdit(GBoxHedgehogs);
 		HHNameEdit[i]->setGeometry(QRect(10, 20 + i * 30, 141, 20));
-		HHNameEdit[i]->setMaxLength(15);
+		HHNameEdit[i]->setMaxLength(64);
 		GBHLayout->addWidget(HHNameEdit[i]);
 	}
 	pageLayout->addWidget(GBoxHedgehogs, 1, 0, 2, 1);