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
15 years ago
|
#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 ();
|
||
|
}
|
||
14 years ago
|
void EncodingDCOPInterface::setEncoding (TQString e)
|
||
15 years ago
|
{
|
||
|
m_parent->setEncoding (e);
|
||
|
}
|
||
14 years ago
|
TQString EncodingDCOPInterface::encoding()
|
||
15 years ago
|
{
|
||
|
return m_parent->encoding();
|
||
|
}
|