Changeset 108 for trunk/src/gui/kernel/qwidget_pm.cpp
- Timestamp:
- Aug 12, 2009, 10:18:10 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gui/kernel/qwidget_pm.cpp
r106 r108 857 857 858 858 if (flags & Qt::WindowTitleHint) { 859 title = topLevel ? qAppName().toLocal8Bit() : q->objectName().toLocal8Bit(); 859 QString t = topLevel ? qAppName() : q->objectName(); 860 t = t.left(1).toUpper() + t.mid(1).toLower(); 861 title = t.toLocal8Bit(); 860 862 } 861 863 … … 1186 1188 } 1187 1189 1190 QCursor *qt_grab_cursor() 1191 { 1192 return mouseGrbCur; 1193 } 1194 1188 1195 void QWidget::grabMouse() 1189 1196 {
Note:
See TracChangeset
for help on using the changeset viewer.