blob: b629cfc40f7f655e7ca6f88bc3caa3addf3f48ab (
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;
ViewtqStatusMsgDCOPInterface::ViewtqStatusMsgDCOPInterface( ViewtqStatusMsgInterface *Parent, const char *name)
: DCOPObject(name)
{
m_parent = Parent;
}
ViewtqStatusMsgDCOPInterface::~ViewtqStatusMsgDCOPInterface()
{
}
uint ViewtqStatusMsgDCOPInterface::viewtqStatusMsgInterfaceNumber ()
{
return m_parent->viewtqStatusMsgInterfaceNumber ();
}
void ViewtqStatusMsgDCOPInterface::viewtqStatusMsg (TQString msg)
{
m_parent->viewtqStatusMsg(msg);
}
|