Commit b5f6de98 authored by Jan Arve Saether's avatar Jan Arve Saether Committed by The Qt Project
Browse files

Doc: Fix small typo


Task-number: QTBUG-36981

Change-Id: I0663aa58def0bda7601fad4e0c10362a562b0290
Reviewed-by: default avatarNico Vertriest <nico.vertriest@digia.com>
Reviewed-by: default avatarJerome Pasion <jerome.pasion@digia.com>
Showing with 1 addition and 1 deletion
...@@ -165,7 +165,7 @@ void Clock::setTime(const QTime &time) ...@@ -165,7 +165,7 @@ void Clock::setTime(const QTime &time)
//! [12] //! [12]
void MyWidget::changeEvent(QEvent *event) void MyWidget::changeEvent(QEvent *event)
{ {
if (e->type() == QEvent::LanguageChange) { if (event->type() == QEvent::LanguageChange) {
titleLabel->setText(tr("Document Title")); titleLabel->setText(tr("Document Title"));
... ...
okPushButton->setText(tr("&OK")); okPushButton->setText(tr("&OK"));
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment