diff options
Diffstat (limited to 'kparts/tests/plugin_spellcheck.h')
-rw-r--r-- | kparts/tests/plugin_spellcheck.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/kparts/tests/plugin_spellcheck.h b/kparts/tests/plugin_spellcheck.h new file mode 100644 index 000000000..31d6b5380 --- /dev/null +++ b/kparts/tests/plugin_spellcheck.h @@ -0,0 +1,18 @@ +#ifndef __plugin_spellcheck_h +#define __plugin_spellcheck_h + +#include <kparts/plugin.h> + +class PluginSpellCheck : public KParts::Plugin +{ + Q_OBJECT +public: + PluginSpellCheck( QObject* parent = 0, const char* name = 0, + const QStringList& = QStringList() ); + virtual ~PluginSpellCheck(); + +public slots: + void slotSpellCheck(); +}; + +#endif |