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.
18 lines
357 B
18 lines
357 B
#ifndef KMTEXTBROWSER_H |
|
#define KMTEXTBROWSER_H |
|
|
|
#include <ktextbrowser.h> |
|
|
|
/** |
|
* A tiny little class to use for displaying raw messages, textual |
|
* attachments etc. |
|
* |
|
* Auto-deletes itself when closed. |
|
*/ |
|
class KMTextBrowser : public KTextBrowser |
|
{ |
|
public: |
|
KMTextBrowser( QWidget *parent = 0, const char *name = 0 ); |
|
}; |
|
|
|
#endif // KMTEXTBROWSER_H
|
|
|