Skip to content

Commit 3696889

Browse files
committed
fix messages on UI
1 parent 63dcadc commit 3696889

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/QT/SioChatDemo/mainwindow.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ void MainWindow::OnUserJoined(std::string const& name,message::ptr const& data,b
159159
}
160160
digits.insert(0,QChar(numUser+'0'));
161161
label.append(digits);
162-
label.append(plural?" participants":"participant");
162+
label.append(plural?" participants":" participant");
163163
QListWidgetItem *item= new QListWidgetItem(label);
164164
item->setTextAlignment(Qt::AlignHCenter);
165165
QFont font;

0 commit comments

Comments
 (0)