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.
29 lines
580 B
29 lines
580 B
#include "encodingdcopinterface.h"
|
|
#include "encodinginterface.h"
|
|
|
|
#include <dcopclient.h>
|
|
using namespace KTextEditor;
|
|
|
|
EncodingDCOPInterface::EncodingDCOPInterface( EncodingInterface *Parent, const char *name)
|
|
: DCOPObject(name)
|
|
{
|
|
m_parent = Parent;
|
|
}
|
|
|
|
EncodingDCOPInterface::~EncodingDCOPInterface()
|
|
{
|
|
|
|
}
|
|
uint EncodingDCOPInterface::encodingInterfaceNumber ()
|
|
{
|
|
return m_parent->encodingInterfaceNumber ();
|
|
}
|
|
void EncodingDCOPInterface::setEncoding (TQString e)
|
|
{
|
|
m_parent->setEncoding (e);
|
|
}
|
|
TQString EncodingDCOPInterface::encoding()
|
|
{
|
|
return m_parent->encoding();
|
|
}
|