From dfe289850f068f19ba4a83ab4e7e22a7e09c13c9 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sat, 26 Jan 2013 13:17:21 -0600 Subject: Rename a number of libraries and executables to avoid conflicts with KDE4 --- interfaces/ktexteditor/clipboarddcopinterface.cpp | 40 ----------------------- 1 file changed, 40 deletions(-) delete mode 100644 interfaces/ktexteditor/clipboarddcopinterface.cpp (limited to 'interfaces/ktexteditor/clipboarddcopinterface.cpp') diff --git a/interfaces/ktexteditor/clipboarddcopinterface.cpp b/interfaces/ktexteditor/clipboarddcopinterface.cpp deleted file mode 100644 index 334046ee5..000000000 --- a/interfaces/ktexteditor/clipboarddcopinterface.cpp +++ /dev/null @@ -1,40 +0,0 @@ -#include "clipboarddcopinterface.h" -#include "clipboardinterface.h" - -#include -using namespace KTextEditor; - -ClipboardDCOPInterface::ClipboardDCOPInterface( ClipboardInterface *Parent, const char *name) - : DCOPObject(name) -{ - m_parent = Parent; -} - -ClipboardDCOPInterface::~ClipboardDCOPInterface() -{ - -} - - /** - * Copies selected text. - */ - void ClipboardDCOPInterface::copy ( ) - { - m_parent->copy(); - } - - /** - * Cuts selected text. - */ - void ClipboardDCOPInterface::cut ( ) - { - m_parent->cut(); - } - - /** - * Pastes text from clipboard. - */ - void ClipboardDCOPInterface::paste ( ) - { - m_parent->paste(); - } -- cgit v1.2.1