summaryrefslogtreecommitdiffstats
path: root/interfaces/ktexteditor/viewstatusmsgdcopinterface.cpp
blob: d38b9b9380fde5ceab0a2529bb953fc4d3a3b259 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include "viewstatusmsgdcopinterface.h"
#include "viewstatusmsginterface.h"

#include <tqstring.h>

#include <dcopclient.h>
using namespace KTextEditor;

ViewStatusMsgDCOPInterface::ViewStatusMsgDCOPInterface( ViewStatusMsgInterface *Parent, const char *name)
	: DCOPObject(name)
{
	m_parent = Parent;
}

ViewStatusMsgDCOPInterface::~ViewStatusMsgDCOPInterface()
{

}

uint ViewStatusMsgDCOPInterface::viewStatusMsgInterfaceNumber ()
{
	return m_parent->viewStatusMsgInterfaceNumber ();
}

void ViewStatusMsgDCOPInterface::viewStatusMsg (TQString msg)
{
	m_parent->viewStatusMsg(msg);
}