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.
19 lines
376 B
19 lines
376 B
15 years ago
|
#ifndef __plugin_spellcheck_h
|
||
|
#define __plugin_spellcheck_h
|
||
|
|
||
12 years ago
|
#include <tdeparts/plugin.h>
|
||
15 years ago
|
|
||
|
class PluginSpellCheck : public KParts::Plugin
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
14 years ago
|
PluginSpellCheck( TQObject* parent = 0, const char* name = 0,
|
||
|
const TQStringList& = TQStringList() );
|
||
15 years ago
|
virtual ~PluginSpellCheck();
|
||
|
|
||
|
public slots:
|
||
|
void slotSpellCheck();
|
||
|
};
|
||
|
|
||
|
#endif
|