mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-23 18:32:49 +00:00
interfaces: remove unused LoadSaveFilterCheckPlugin member
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
c3bc63f0f1
commit
a5da99464d
2 changed files with 83 additions and 62 deletions
|
@ -176,115 +176,140 @@ Editor *KTextEditor::editor(const char *libname)
|
|||
return ef->editor();
|
||||
}
|
||||
|
||||
ConfigPage::ConfigPage ( QWidget *parent )
|
||||
: QWidget (parent)
|
||||
{}
|
||||
ConfigPage::ConfigPage(QWidget *parent)
|
||||
: QWidget(parent)
|
||||
{
|
||||
}
|
||||
|
||||
ConfigPage::~ConfigPage ()
|
||||
{}
|
||||
ConfigPage::~ConfigPage()
|
||||
{
|
||||
}
|
||||
|
||||
View::View ( QWidget *parent )
|
||||
: QWidget(parent), KXMLGUIClient()
|
||||
{}
|
||||
View::View(QWidget *parent )
|
||||
: QWidget(parent),
|
||||
KXMLGUIClient()
|
||||
{
|
||||
}
|
||||
|
||||
View::~View ()
|
||||
{}
|
||||
View::~View()
|
||||
{
|
||||
}
|
||||
|
||||
Plugin::Plugin ( QObject *parent )
|
||||
: QObject (parent)
|
||||
{}
|
||||
Plugin::Plugin(QObject *parent)
|
||||
: QObject(parent)
|
||||
{
|
||||
}
|
||||
|
||||
Plugin::~Plugin ()
|
||||
{}
|
||||
Plugin::~Plugin()
|
||||
{
|
||||
}
|
||||
|
||||
MarkInterface::MarkInterface ()
|
||||
{}
|
||||
MarkInterface::MarkInterface()
|
||||
{
|
||||
}
|
||||
|
||||
MarkInterface::~MarkInterface ()
|
||||
{}
|
||||
MarkInterface::~MarkInterface()
|
||||
{
|
||||
}
|
||||
|
||||
ModificationInterface::ModificationInterface ()
|
||||
{}
|
||||
{
|
||||
}
|
||||
|
||||
ModificationInterface::~ModificationInterface ()
|
||||
{}
|
||||
ModificationInterface::~ModificationInterface()
|
||||
{
|
||||
}
|
||||
|
||||
ContainerInterface::ContainerInterface ()
|
||||
{}
|
||||
ContainerInterface::ContainerInterface()
|
||||
{
|
||||
}
|
||||
|
||||
ContainerInterface::~ContainerInterface ()
|
||||
{}
|
||||
ContainerInterface::~ContainerInterface()
|
||||
{
|
||||
}
|
||||
|
||||
MdiContainer::MdiContainer ()
|
||||
{}
|
||||
MdiContainer::MdiContainer()
|
||||
{
|
||||
}
|
||||
|
||||
MdiContainer::~MdiContainer ()
|
||||
{}
|
||||
MdiContainer::~MdiContainer()
|
||||
{
|
||||
}
|
||||
|
||||
ViewBarContainer::ViewBarContainer()
|
||||
{}
|
||||
{
|
||||
}
|
||||
|
||||
ViewBarContainer::~ViewBarContainer()
|
||||
{}
|
||||
|
||||
{
|
||||
}
|
||||
|
||||
SearchInterface::SearchInterface()
|
||||
{}
|
||||
{
|
||||
}
|
||||
|
||||
SearchInterface::~SearchInterface()
|
||||
{}
|
||||
{
|
||||
}
|
||||
|
||||
SessionConfigInterface::SessionConfigInterface()
|
||||
{}
|
||||
{
|
||||
}
|
||||
|
||||
SessionConfigInterface::~SessionConfigInterface()
|
||||
{}
|
||||
{
|
||||
}
|
||||
|
||||
ParameterizedSessionConfigInterface::ParameterizedSessionConfigInterface()
|
||||
{}
|
||||
{
|
||||
}
|
||||
|
||||
ParameterizedSessionConfigInterface::~ParameterizedSessionConfigInterface()
|
||||
{}
|
||||
{
|
||||
}
|
||||
|
||||
TemplateInterface::TemplateInterface()
|
||||
{}
|
||||
{
|
||||
}
|
||||
|
||||
TemplateInterface::~TemplateInterface()
|
||||
{}
|
||||
{
|
||||
}
|
||||
|
||||
TextHintInterface::TextHintInterface()
|
||||
{}
|
||||
{
|
||||
}
|
||||
|
||||
TextHintInterface::~TextHintInterface()
|
||||
{}
|
||||
{
|
||||
}
|
||||
|
||||
VariableInterface::VariableInterface()
|
||||
{}
|
||||
{
|
||||
}
|
||||
|
||||
VariableInterface::~VariableInterface()
|
||||
{}
|
||||
|
||||
class KTextEditor::LoadSaveFilterCheckPluginPrivate {
|
||||
public:
|
||||
LoadSaveFilterCheckPluginPrivate(){}
|
||||
~LoadSaveFilterCheckPluginPrivate(){}
|
||||
};
|
||||
{
|
||||
}
|
||||
|
||||
LoadSaveFilterCheckPlugin::LoadSaveFilterCheckPlugin(QObject *parent):
|
||||
QObject(parent),
|
||||
d(new LoadSaveFilterCheckPluginPrivate()) { }
|
||||
QObject(parent)
|
||||
{
|
||||
}
|
||||
|
||||
LoadSaveFilterCheckPlugin::~LoadSaveFilterCheckPlugin() { delete d; }
|
||||
LoadSaveFilterCheckPlugin::~LoadSaveFilterCheckPlugin()
|
||||
{
|
||||
}
|
||||
|
||||
CoordinatesToCursorInterface::~CoordinatesToCursorInterface() {
|
||||
}
|
||||
|
||||
|
||||
|
||||
ModeInterface::ModeInterface() {
|
||||
ModeInterface::ModeInterface()
|
||||
{
|
||||
}
|
||||
|
||||
ModeInterface::~ModeInterface() {
|
||||
ModeInterface::~ModeInterface()
|
||||
{
|
||||
}
|
||||
|
||||
RecoveryInterface::RecoveryInterface()
|
||||
|
|
|
@ -34,8 +34,6 @@
|
|||
namespace KTextEditor
|
||||
{
|
||||
|
||||
class LoadSaveFilterCheckPluginPrivate;
|
||||
|
||||
/**
|
||||
* \brief Plugin for load/save filtering
|
||||
*/
|
||||
|
@ -53,8 +51,6 @@ class KTEXTEDITOR_EXPORT LoadSaveFilterCheckPlugin:public QObject {
|
|||
virtual bool postSaveFilterCheck(KTextEditor::Document *document, bool saveas) =0;
|
||||
/*this one is called once the document has been completely loaded and configured (encoding,highlighting, ...))*/
|
||||
virtual void postLoadFilter(KTextEditor::Document *document) =0;
|
||||
private:
|
||||
class LoadSaveFilterCheckPluginPrivate* const d;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue