diff options
Diffstat (limited to 'client/viewer.h')
-rw-r--r-- | client/viewer.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/client/viewer.h b/client/viewer.h index 7877b8e..c9f1b41 100644 --- a/client/viewer.h +++ b/client/viewer.h @@ -36,6 +36,9 @@ #include <QMap> #include <QHBoxLayout> +//#define WITH_FROGS + +#ifdef WITH_FROGS #include "netcom.h" class Status : public QWidget { @@ -49,6 +52,7 @@ private: QMap<QString, QLabel*> icons; QHBoxLayout *hl; }; +#endif class Viewer : public QWidget { Q_OBJECT @@ -71,10 +75,13 @@ private: QString cpr; QString journalpath; QStringList templs; - NetCom *netcom; QTextEdit *journal; + +#ifdef WITH_FROGS + NetCom *netcom; QMap<QString, Status* > statuses; +#endif }; #endif/*__PRACRO_VIEWER_H__*/ |