summaryrefslogtreecommitdiffstats
path: root/kparts/tests/plugin_spellcheck.h
blob: 56f0e657ac5e178005e48c62ab081268b2fa53a8 (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 <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