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.
30 lines
588 B
30 lines
588 B
#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);
|
|
}
|
|
|