diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 17:25:37 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 17:25:37 -0600 |
commit | ac037fd7970c8bc4f3a50dda06589016a1190af7 (patch) | |
tree | db5445cc468b218b74292170cccb4a55c60f806d /examples/chectdelists/chectdelists.h | |
parent | b283cf865c1a4cc886280937ea9c78271418ac3a (diff) | |
download | tqt3-ac037fd7970c8bc4f3a50dda06589016a1190af7.tar.gz tqt3-ac037fd7970c8bc4f3a50dda06589016a1190af7.zip |
Fix FTBFS
Diffstat (limited to 'examples/chectdelists/chectdelists.h')
-rw-r--r-- | examples/chectdelists/chectdelists.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/examples/chectdelists/chectdelists.h b/examples/chectdelists/chectdelists.h new file mode 100644 index 000000000..d2097dd18 --- /dev/null +++ b/examples/chectdelists/chectdelists.h @@ -0,0 +1,35 @@ +/**************************************************************************** +** +** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved. +** +** This file is part of an example program for TQt. This example +** program may be used, distributed and modified without limitation. +** +*****************************************************************************/ + +#ifndef CHECKLISTS_H +#define CHECKLISTS_H + +#include <ntqwidget.h> + +class TQListView; +class TQLabel; + +class CheckLists : public TQWidget +{ + TQ_OBJECT + +public: + CheckLists( TQWidget *parent = 0, const char *name = 0 ); + +protected: + TQListView *lv1, *lv2; + TQLabel *label; + +protected slots: + void copy1to2(); + void copy2to3(); + +}; + +#endif |