add changeHumanPlayerNameDialog

This commit is contained in:
doitux
2007-05-28 19:56:57 +00:00
parent 0e1abc3656
commit 61e2131470
9 changed files with 235 additions and 10 deletions
+13
View File
@@ -65,3 +65,16 @@ void Chat::checkInputLength(QString string) {
if(string.toUtf8().length() > 120) myW->lineEdit_ChatInput->setMaxLength(string.length());
}
void Chat::clearNewGame() {
myW->textBrowser_Chat->clear();
/* QStringList wordList;
wordList << "alpha" << "omega" << "omicron" << "zeta";*/
// QCompleter *completer = new QCompleter(wordList, this);
// completer->setCaseSensitivity(Qt::CaseInsensitive);
// completer->setCompletionMode(QCompleter::InlineCompletion);
// // lineEdit_ChatInput->setCompleter(completer);
}