summaryrefslogtreecommitdiff
path: root/noncore/tools/pimconverter/converter.h
Side-by-side diff
Diffstat (limited to 'noncore/tools/pimconverter/converter.h') (more/less context) (ignore whitespace changes)
-rwxr-xr-xnoncore/tools/pimconverter/converter.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/noncore/tools/pimconverter/converter.h b/noncore/tools/pimconverter/converter.h
index 27d7fb2..a78c6bc 100755
--- a/noncore/tools/pimconverter/converter.h
+++ b/noncore/tools/pimconverter/converter.h
@@ -5,36 +5,39 @@
#include "converter_base.h"
class Converter: public converter_base {
public:
Converter();
// Slots defined in the ui-description file
void start_conversion();
void selectedDatabase( int num );
void selectedDestFormat( int num );
void selectedSourceFormat( int num );
+
+ void closeEvent( QCloseEvent *e );
private:
// Caution:
// The order and value of the following enums must be regarding
// the predefinition in the UI-File !!
enum DataBases{
ADDRESSBOOK = 0,
TODOLIST = 1,
DATEBOOK = 2,
};
enum DbFormats{
XML = 0,
SQL = 1,
};
int m_selectedDatabase;
int m_selectedSourceFormat;
int m_selectedDestFormat;
+ bool m_criticalState;
};
#endif