Windows build fix (warning in gcc -> error on windows...)

This commit is contained in:
Benjamin Jemlich 2010-03-07 22:13:24 +01:00
parent 47cbf7897d
commit 10175effde

View File

@ -169,10 +169,10 @@ bool ChatbarLineEdit::event(QEvent *event) {
}
unsigned int ChatbarLineEdit::completeAtCursor() {
// currently broken
#if 0
// Get an alphabetically sorted list of usernames
unsigned int id = 0;
// currently broken
#if 0
QList<QString> qlsUsernames;
if (ClientUser::c_qmUsers.empty()) return id;
@ -231,8 +231,8 @@ unsigned int ChatbarLineEdit::completeAtCursor() {
}
setText(newtext);
}
return id;
#endif
return id;
}
void ChatbarLineEdit::pasteAndSend_triggered() {