diff options
author | Darrell Anderson <[email protected]> | 2014-03-02 20:05:33 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2014-03-02 20:05:33 +0100 |
commit | 722ce1efbac31c61b1d4b13f7e075c9f311e3e73 (patch) | |
tree | db1b6b28566e5fe9accb4a688f7257673cecb080 /parts/filter/tdevfilterIface.cpp | |
parent | afb74575caf7dd8ccb6c235b1c8d788e320c19da (diff) | |
download | tdevelop-722ce1efbac31c61b1d4b13f7e075c9f311e3e73.tar.gz tdevelop-722ce1efbac31c61b1d4b13f7e075c9f311e3e73.zip |
Finish renaming tdevelop components
Diffstat (limited to 'parts/filter/tdevfilterIface.cpp')
-rw-r--r-- | parts/filter/tdevfilterIface.cpp | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/parts/filter/tdevfilterIface.cpp b/parts/filter/tdevfilterIface.cpp new file mode 100644 index 00000000..e0c15687 --- /dev/null +++ b/parts/filter/tdevfilterIface.cpp @@ -0,0 +1,35 @@ +// +// +// C++ Implementation: cpp +// +// Description: +// +// +// Author: KDevelop Authors <[email protected]>, (C) 2003 +// +// Copyright: See COPYING file that comes with this distribution +// +// +#include "tdevfilterIface.h" +#include "filterpart.h" + +TDevFilterIface::TDevFilterIface( FilterPart* part ) + : TQObject( part ), DCOPObject( "TDevFilter" ), m_part( part ) +{ +} + +TDevFilterIface::~TDevFilterIface() +{ +} + +void TDevFilterIface::shellInsert() +{ + m_part->slotShellInsert(); +} + +void TDevFilterIface::shellFilter() +{ + m_part->slotShellFilter(); +} + +#include "tdevfilterIface.moc" |