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