summaryrefslogtreecommitdiff
path: root/kde-base/konsole/files
diff options
context:
space:
mode:
authorAlexey Shvetsov <alexxy@gentoo.org>2009-05-08 22:59:58 +0400
committerAlexey Shvetsov <alexxy@gentoo.org>2009-05-08 22:59:58 +0400
commit8dd49e26f7501272fa1f7062d9b65c58b643fc47 (patch)
tree856894d138f5e08d7ec81a31df481cf3e3407a9b /kde-base/konsole/files
parentce77cd46357b155b49e21962fffa5a89956cf26e (diff)
downloadkde-8dd49e26f7501272fa1f7062d9b65c58b643fc47.tar.gz
kde-8dd49e26f7501272fa1f7062d9b65c58b643fc47.tar.bz2
kde-8dd49e26f7501272fa1f7062d9b65c58b643fc47.zip
Drop KDE 4.2.71!
Diffstat (limited to 'kde-base/konsole/files')
-rw-r--r--kde-base/konsole/files/4.2.1-mouse-selector.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/kde-base/konsole/files/4.2.1-mouse-selector.patch b/kde-base/konsole/files/4.2.1-mouse-selector.patch
deleted file mode 100644
index 4653afb1730..00000000000
--- a/kde-base/konsole/files/4.2.1-mouse-selector.patch
+++ /dev/null
@@ -1,27 +0,0 @@
---- apps/konsole/src/TerminalDisplay.cpp 2009-02-26 11:16:35.000000000 -0300
-+++ apps/konsole/src/TerminalDisplay.cpp.new 2009-03-04 09:14:54.000000000 -0300
-@@ -2155,11 +2155,12 @@
- _wordSelectionMode = true;
-
- // find word boundaries...
-+ QChar selClass = charClass(_image[i].character);
- {
- // find the start of the word
- int x = bgnSel.x();
- while ( ((x>0) || (bgnSel.y()>0 && (_lineProperties[bgnSel.y()-1] & LINE_WRAPPED) ))
-- && !isCharBoundary(_image[i-1].character) )
-+ && charClass(_image[i-1].character) == selClass )
- {
- i--;
- if (x>0)
-@@ -2177,8 +2178,8 @@
- // find the end of the word
- i = loc( endSel.x(), endSel.y() );
- x = endSel.x();
-- while( ((x<_usedColumns-1) || (endSel.y()<_usedLines-1 && (_lineProperties[endSel.y()] & LINE_WRAPPED) ))
-- && !isCharBoundary(_image[i+1].character) )
-+ while( ((x<_usedColumns-1) || (endSel.y()<_usedLines-1 && (_lineProperties[endSel.y()] & LINE_WRAPPED) ))
-+ && charClass(_image[i+1].character) == selClass )
- {
- i++;
- if (x<_usedColumns-1)