You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdelibs/interfaces/ktexteditor/viewstatusmsgdcopinterface.cpp

30 lines
610 B

#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);
}