diff options
Diffstat (limited to 'kate')
-rw-r--r-- | kate/data/idconsole.xml | 2 | ||||
-rw-r--r-- | kate/interfaces/document.h | 2 | ||||
-rw-r--r-- | kate/part/katedocument.cpp | 2 | ||||
-rw-r--r-- | kate/part/katesearch.cpp | 2 | ||||
-rw-r--r-- | kate/part/kateview.h | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/kate/data/idconsole.xml b/kate/data/idconsole.xml index 9275cd944..fa2a5cffd 100644 --- a/kate/data/idconsole.xml +++ b/kate/data/idconsole.xml @@ -197,7 +197,7 @@ <item> host_speeds </item> <item> hostname </item> <item> hpkextract </item> -<item> hptdelist </item> +<item> hpklist </item> <item> hpkremove </item> <item> hpkval </item> <item> hud_centerid </item> diff --git a/kate/interfaces/document.h b/kate/interfaces/document.h index aaf241eee..06c8c4133 100644 --- a/kate/interfaces/document.h +++ b/kate/interfaces/document.h @@ -27,7 +27,7 @@ #include <tdetexteditor/documentinfo.h> #include <tdetexteditor/selectioninterface.h> #include <tdetexteditor/selectioninterfaceext.h> -#include <tdetexteditor/bloctdeselectioninterface.h> +#include <tdetexteditor/blockselectioninterface.h> #include <tdetexteditor/searchinterface.h> #include <tdetexteditor/highlightinginterface.h> #include <tdetexteditor/configinterface.h> diff --git a/kate/part/katedocument.cpp b/kate/part/katedocument.cpp index cb1844489..fbfc43eef 100644 --- a/kate/part/katedocument.cpp +++ b/kate/part/katedocument.cpp @@ -3976,7 +3976,7 @@ void KateDocument::transform( KateView *v, const KateTextCursor &c, { // If bol or the character before is not in a word, up this one: // 1. if both start and p is 0, upper char. - // 2. if bloctdeselect or first line, and p == 0 and start-1 is not in a word, upper + // 2. if blockselect or first line, and p == 0 and start-1 is not in a word, upper // 3. if p-1 is not in a word, upper. if ( ( ! start && ! p ) || ( ( ln == selstart.line() || v->blockSelectionMode() ) && diff --git a/kate/part/katesearch.cpp b/kate/part/katesearch.cpp index b66be04c6..9d0dc896b 100644 --- a/kate/part/katesearch.cpp +++ b/kate/part/katesearch.cpp @@ -696,7 +696,7 @@ bool KateSearch::doSearch( const TQString& text ) col = foundCol+1; } while (s.flags.selected && m_view->blockSelectionMode() && found); - // in the case we want to search in selection + bloctdeselection we need to loop + // in the case we want to search in selection + blockselection we need to loop if( !found ) return false; diff --git a/kate/part/kateview.h b/kate/part/kateview.h index 9d04a524f..0a00ab1fc 100644 --- a/kate/part/kateview.h +++ b/kate/part/kateview.h @@ -222,7 +222,7 @@ class KateView : public Kate::View, */ inline const KateSuperCursor &selEnd () const { return selectEnd; } - // should cursor be wrapped ? take config + bloctdeselection state in account + // should cursor be wrapped ? take config + blockselection state in account bool wrapCursor (); // some internal functions to get selection state of a line/col |