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
15 years ago
|
#include "viewstatusmsgdcopinterface.h"
|
||
|
#include "viewstatusmsginterface.h"
|
||
|
|
||
14 years ago
|
#include <tqstring.h>
|
||
15 years ago
|
|
||
|
#include <dcopclient.h>
|
||
|
using namespace KTextEditor;
|
||
|
|
||
14 years ago
|
ViewStatusMsgDCOPInterface::ViewStatusMsgDCOPInterface( ViewStatusMsgInterface *Parent, const char *name)
|
||
15 years ago
|
: DCOPObject(name)
|
||
|
{
|
||
|
m_parent = Parent;
|
||
|
}
|
||
|
|
||
14 years ago
|
ViewStatusMsgDCOPInterface::~ViewStatusMsgDCOPInterface()
|
||
15 years ago
|
{
|
||
|
|
||
|
}
|
||
|
|
||
14 years ago
|
uint ViewStatusMsgDCOPInterface::viewStatusMsgInterfaceNumber ()
|
||
15 years ago
|
{
|
||
14 years ago
|
return m_parent->viewStatusMsgInterfaceNumber ();
|
||
15 years ago
|
}
|
||
|
|
||
14 years ago
|
void ViewStatusMsgDCOPInterface::viewStatusMsg (TQString msg)
|
||
15 years ago
|
{
|
||
14 years ago
|
m_parent->viewStatusMsg(msg);
|
||
15 years ago
|
}
|
||
|
|