blob: 3c7506c5ce2c9a9071736494250810a1ac3ec7aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef __plugin_spellcheck_h
#define __plugin_spellcheck_h
#include <tdeparts/plugin.h>
class PluginSpellCheck : public KParts::Plugin
{
TQ_OBJECT
public:
PluginSpellCheck( TQObject* parent = 0, const char* name = 0,
const TQStringList& = TQStringList() );
virtual ~PluginSpellCheck();
public slots:
void slotSpellCheck();
};
#endif
|