diff options
Diffstat (limited to 'src/info_gui.cc')
-rw-r--r-- | src/info_gui.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/info_gui.cc b/src/info_gui.cc index db23827..2559402 100644 --- a/src/info_gui.cc +++ b/src/info_gui.cc @@ -38,6 +38,8 @@ #include "info_gui.h" +#include "miav_config.h" + #include <stdio.h> #include <stdarg.h> @@ -59,6 +61,8 @@ bool InfoEventHandler::eventFilter( QObject *o, QEvent *e ) InfoGui::InfoGui(QApplication *a, QWidget *p): Info() { + log_filename = *config->readString("client_log_file"); + qapp = a; parent = p; @@ -140,4 +144,5 @@ void InfoGui::info(char *fmt, ...) showmsg(buf, TXT_INFO_TITLE, ICON_INFO); } + #endif/*USE_GUI*/ |