Replace nokia in example by Qt Project

Change-Id: I23adfd6a1cf02c8c99996b698fb780988434b9a7
Reviewed-by: Gabriel de Dietrich <gabriel.dedietrich@digia.com>
This commit is contained in:
Frederik Gladhorn 2013-02-05 19:03:25 +01:00 committed by The Qt Project
parent 1d9863658d
commit d7cad756ef

View File

@ -856,8 +856,8 @@ void Widget::toLongLongFunction()
void Widget::toLowerFunction()
{
//! [75]
QString str = "Qt by NOKIA";
str = str.toLower(); // str == "qt by nokia"
QString str = "The QT PROJECT";
str = str.toLower(); // str == "the qt project"
//! [75]
}