diff options
author | Kostyantyn Ovechko <fastinetserver@gmail.com> | 2010-08-04 21:25:01 +0300 |
---|---|---|
committer | Kostyantyn Ovechko <fastinetserver@gmail.com> | 2010-08-04 21:25:01 +0300 |
commit | 085adf80f89b1eab2c0b7a501c6ae00c946b4648 (patch) | |
tree | 86b9c3a08d00de56e9f73e6cee61a50a7c275b3a /tuiclient/mainwindow.h | |
parent | Add --wait-distfile=distfile_name option to cli of tuiclient (diff) | |
download | idfetch-085adf80f89b1eab2c0b7a501c6ae00c946b4648.tar.gz idfetch-085adf80f89b1eab2c0b7a501c6ae00c946b4648.tar.bz2 idfetch-085adf80f89b1eab2c0b7a501c6ae00c946b4648.zip |
Add DSCRIPTREJECTED status for distfiles.
Diffstat (limited to 'tuiclient/mainwindow.h')
-rw-r--r-- | tuiclient/mainwindow.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tuiclient/mainwindow.h b/tuiclient/mainwindow.h index ca55343..6ebcadc 100644 --- a/tuiclient/mainwindow.h +++ b/tuiclient/mainwindow.h @@ -51,6 +51,7 @@ class Tmainwindow: public Tscroll_window{ // string screenlines[200]; string screen_info_lines[4]; ulong attempt_num; + bool disconnected_flag; Tmainwindow(): help_win(), log_win(), @@ -58,7 +59,8 @@ class Tmainwindow: public Tscroll_window{ distfiles_win(), // exit_flag(FALSE), connected_status(FALSE), - attempt_num(0) + attempt_num(0), + disconnected_flag(true) {}; ~Tmainwindow(){}; Tmainwindow(const Twindow &L); // copy constructor |