blob: 496eaf4f02b732eda00ecb8bd31ed5c416204514 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#include "newmaildirui.h"
#include <qvariant.h>
class Newmdirdlg : public Newmdirdlgui
{
Q_OBJECT
public:
Newmdirdlg( QWidget* parent = 0, const char* name = 0,bool no_sub=false);
~Newmdirdlg();
const QString&Newdir()const;
const bool subpossible()const;
protected slots:
virtual void accept();
protected:
QString ndir;
bool possible_subs;
};
|