summaryrefslogtreecommitdiffstats
path: root/interfaces
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-02 13:41:49 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-02 13:41:49 -0600
commitf8d95a02420773d558fe73c0847c305666d47241 (patch)
treef078d1873e2141de4749d3b41405baf6dfe0463b /interfaces
parentd1e0cc99a202cef3306b90b8839a6726e89f201e (diff)
downloadtdelibs-f8d95a02420773d558fe73c0847c305666d47241.tar.gz
tdelibs-f8d95a02420773d558fe73c0847c305666d47241.zip
Fix unintended renaming
Diffstat (limited to 'interfaces')
-rw-r--r--interfaces/tdetexteditor/CMakeLists.txt8
-rw-r--r--interfaces/tdetexteditor/Makefile.am8
-rw-r--r--interfaces/tdetexteditor/blockselectiondcopinterface.cpp (renamed from interfaces/tdetexteditor/bloctdeselectiondcopinterface.cpp)4
-rw-r--r--interfaces/tdetexteditor/blockselectiondcopinterface.h (renamed from interfaces/tdetexteditor/bloctdeselectiondcopinterface.h)4
-rw-r--r--interfaces/tdetexteditor/blockselectioninterface.cpp (renamed from interfaces/tdetexteditor/bloctdeselectioninterface.cpp)4
-rw-r--r--interfaces/tdetexteditor/blockselectioninterface.h (renamed from interfaces/tdetexteditor/bloctdeselectioninterface.h)6
6 files changed, 17 insertions, 17 deletions
diff --git a/interfaces/tdetexteditor/CMakeLists.txt b/interfaces/tdetexteditor/CMakeLists.txt
index 5ed7edeca..0808a84f3 100644
--- a/interfaces/tdetexteditor/CMakeLists.txt
+++ b/interfaces/tdetexteditor/CMakeLists.txt
@@ -37,7 +37,7 @@ install( FILES
document.h view.h editor.h plugin.h editinterface.h
undointerface.h selectioninterface.h cursorinterface.h
clipboardinterface.h popupmenuinterface.h viewcursorinterface.h
- searchinterface.h highlightinginterface.h bloctdeselectioninterface.h
+ searchinterface.h highlightinginterface.h blockselectioninterface.h
codecompletioninterface.h configinterface.h markinterface.h
printinterface.h wordwrapinterface.h dynwordwrapinterface.h
markinterfaceextension.h configinterfaceextension.h
@@ -69,7 +69,7 @@ set( target tdetexteditor )
set( ${target}_SRCS
tdetexteditor.cpp
editinterface.cpp clipboardinterface.cpp selectioninterface.cpp searchinterface.cpp
- codecompletioninterface.cpp wordwrapinterface.cpp bloctdeselectioninterface.cpp
+ codecompletioninterface.cpp wordwrapinterface.cpp blockselectioninterface.cpp
configinterface.cpp cursorinterface.cpp dynwordwrapinterface.cpp
printinterface.cpp highlightinginterface.cpp markinterface.cpp
popupmenuinterface.cpp undointerface.cpp viewcursorinterface.cpp
@@ -78,8 +78,8 @@ set( ${target}_SRCS
searchdcopinterface.cpp searchdcopinterface.skel markinterfaceextension.cpp
configinterfaceextension.cpp encodinginterface.cpp sessionconfiginterface.cpp
viewstatusmsginterface.cpp editorchooser_ui.ui editorchooser.cpp
- bloctdeselectiondcopinterface.cpp documentinfo.cpp documentdcopinfo.cpp
- bloctdeselectiondcopinterface.skel documentdcopinfo.skel encodingdcopinterface.cpp
+ blockselectiondcopinterface.cpp documentinfo.cpp documentdcopinfo.cpp
+ blockselectiondcopinterface.skel documentdcopinfo.skel encodingdcopinterface.cpp
encodingdcopinterface.skel printdcopinterface.cpp printdcopinterface.skel
undodcopinterface.cpp undodcopinterface.skel viewcursordcopinterface.cpp
viewcursordcopinterface.skel viewstatusmsgdcopinterface.cpp
diff --git a/interfaces/tdetexteditor/Makefile.am b/interfaces/tdetexteditor/Makefile.am
index 7cba7d096..b535b39cc 100644
--- a/interfaces/tdetexteditor/Makefile.am
+++ b/interfaces/tdetexteditor/Makefile.am
@@ -4,7 +4,7 @@ lib_LTLIBRARIES = libtdetexteditor.la
libtdetexteditor_la_SOURCES = tdetexteditor.cpp \
editinterface.cpp clipboardinterface.cpp selectioninterface.cpp searchinterface.cpp \
- codecompletioninterface.cpp wordwrapinterface.cpp bloctdeselectioninterface.cpp \
+ codecompletioninterface.cpp wordwrapinterface.cpp blockselectioninterface.cpp \
configinterface.cpp cursorinterface.cpp dynwordwrapinterface.cpp \
printinterface.cpp highlightinginterface.cpp markinterface.cpp \
popupmenuinterface.cpp undointerface.cpp viewcursorinterface.cpp \
@@ -13,8 +13,8 @@ libtdetexteditor_la_SOURCES = tdetexteditor.cpp \
searchdcopinterface.cpp searchdcopinterface.skel markinterfaceextension.cpp \
configinterfaceextension.cpp encodinginterface.cpp sessionconfiginterface.cpp \
viewstatusmsginterface.cpp editorchooser_ui.ui editorchooser.cpp \
- bloctdeselectiondcopinterface.cpp documentinfo.cpp documentdcopinfo.cpp\
- bloctdeselectiondcopinterface.skel documentdcopinfo.skel encodingdcopinterface.cpp \
+ blockselectiondcopinterface.cpp documentinfo.cpp documentdcopinfo.cpp\
+ blockselectiondcopinterface.skel documentdcopinfo.skel encodingdcopinterface.cpp \
encodingdcopinterface.skel printdcopinterface.cpp printdcopinterface.skel \
undodcopinterface.cpp undodcopinterface.skel viewcursordcopinterface.cpp \
viewcursordcopinterface.skel viewstatusmsgdcopinterface.cpp \
@@ -29,7 +29,7 @@ tdetexteditorinclude_HEADERS = document.h view.h editor.h plugin.h editinterface
selectioninterface.h cursorinterface.h \
clipboardinterface.h popupmenuinterface.h \
viewcursorinterface.h searchinterface.h highlightinginterface.h \
- bloctdeselectioninterface.h codecompletioninterface.h \
+ blockselectioninterface.h codecompletioninterface.h \
configinterface.h markinterface.h printinterface.h wordwrapinterface.h \
dynwordwrapinterface.h markinterfaceextension.h configinterfaceextension.h \
encodinginterface.h viewstatusmsginterface.h sessionconfiginterface.h editorchooser.h \
diff --git a/interfaces/tdetexteditor/bloctdeselectiondcopinterface.cpp b/interfaces/tdetexteditor/blockselectiondcopinterface.cpp
index 1648c3eb3..34b7294b2 100644
--- a/interfaces/tdetexteditor/bloctdeselectiondcopinterface.cpp
+++ b/interfaces/tdetexteditor/blockselectiondcopinterface.cpp
@@ -1,5 +1,5 @@
-#include "bloctdeselectiondcopinterface.h"
-#include "bloctdeselectioninterface.h"
+#include "blockselectiondcopinterface.h"
+#include "blockselectioninterface.h"
#include <dcopclient.h>
using namespace KTextEditor;
diff --git a/interfaces/tdetexteditor/bloctdeselectiondcopinterface.h b/interfaces/tdetexteditor/blockselectiondcopinterface.h
index 3117ee163..4b74fd2a0 100644
--- a/interfaces/tdetexteditor/bloctdeselectiondcopinterface.h
+++ b/interfaces/tdetexteditor/blockselectiondcopinterface.h
@@ -38,13 +38,13 @@ namespace KTextEditor
/**
* Returns the status of the selection mode - true indicates block selection mode is on.
* If this is true, selections applied via the SelectionInterface are handled as
- * bloctdeselections and the paste functions of the ClipboardInterface works on
+ * blockselections and the paste functions of the ClipboardInterface works on
* rectangular blocks of text rather than normal. (copy too, but thats clear I hope ;)
*/
bool blockSelectionMode ();
/**
- * set bloctdeselection mode to state "on"
+ * set blockselection mode to state "on"
*/
bool setBlockSelectionMode (bool on) ;
diff --git a/interfaces/tdetexteditor/bloctdeselectioninterface.cpp b/interfaces/tdetexteditor/blockselectioninterface.cpp
index 0a7068dba..6d562a43e 100644
--- a/interfaces/tdetexteditor/bloctdeselectioninterface.cpp
+++ b/interfaces/tdetexteditor/blockselectioninterface.cpp
@@ -18,8 +18,8 @@
// $Id$
-#include "bloctdeselectioninterface.h"
-#include "bloctdeselectiondcopinterface.h"
+#include "blockselectioninterface.h"
+#include "blockselectiondcopinterface.h"
#include "document.h"
namespace KTextEditor
diff --git a/interfaces/tdetexteditor/bloctdeselectioninterface.h b/interfaces/tdetexteditor/blockselectioninterface.h
index 34ab553f9..b2cd785eb 100644
--- a/interfaces/tdetexteditor/bloctdeselectioninterface.h
+++ b/interfaces/tdetexteditor/blockselectioninterface.h
@@ -16,8 +16,8 @@
Boston, MA 02110-1301, USA.
*/
-#ifndef __tdetexteditor_bloctdeselectioninterface_h__
-#define __tdetexteditor_bloctdeselectioninterface_h__
+#ifndef __tdetexteditor_blockselectioninterface_h__
+#define __tdetexteditor_blockselectioninterface_h__
#include <tdelibs_export.h>
@@ -51,7 +51,7 @@ class KTEXTEDITOR_EXPORT BlockSelectionInterface
/**
* Returns the status of the selection mode - true indicates block selection mode is on.
* If this is true, selections applied via the SelectionInterface are handled as
- * bloctdeselections and the paste functions of the ClipboardInterface works on
+ * blockselections and the paste functions of the ClipboardInterface works on
* rectangular blocks of text rather than normal. (copy too, but thats clear I hope ;)
*/
virtual bool blockSelectionMode () = 0;