]> git.pld-linux.org Git - packages/qt.git/blame - qt-qlineedit_khtml_fix.patch
- desc why patches are commented out
[packages/qt.git] / qt-qlineedit_khtml_fix.patch
CommitLineData
36557a1e 1===================================================================
2RCS file: /home2/webcvs/mirror/qt-copy/src/widgets/qlineedit.cpp,v
3retrieving revision 1.62
4retrieving revision 1.63
5diff -u -p -r1.62 -r1.63
6--- qt-copy/src/widgets/qlineedit.cpp 2003/08/27 14:31:51 1.62
7+++ qt-copy/src/widgets/qlineedit.cpp 2003/08/29 07:50:17 1.63
8@@ -2401,7 +2401,7 @@ void QLineEditPrivate::setText( const QS
9 text = maskString( 0, txt, TRUE );
10 text += clearString( text.length(), maxLength - text.length() );
11 } else {
12- text = txt.isEmpty() ? QString::fromLatin1( "" ) : txt.left( maxLength );
13+ text = txt.isEmpty() ? txt : txt.left( maxLength );
14 }
15 history.clear();
16 undoState = 0;
This page took 0.189602 seconds and 4 git commands to generate.