From kde-commits Fri Apr 11 05:50:08 2003 From: George Staikos Date: Fri, 11 Apr 2003 05:50:08 +0000 To: kde-commits Subject: qt-copy/src/widgets X-MARC-Message: https://marc.info/?l=kde-commits&m=105004021703516 CVS commit by staikos: patch from trolltech to fix copyAvailable() not being emitted after calls to cut() M +1 -0 qtextedit.cpp 1.33 --- qt-copy/src/widgets/qtextedit.cpp #1.32:1.33 @@ -1865,4 +1865,5 @@ void QTextEdit::removeSelectedText( int emit textChanged(); emit selectionChanged(); + emit copyAvailable( doc->hasSelection( QTextDocument::Standard ) ); }