summaryrefslogtreecommitdiffstats
path: root/mp_msg.c
diff options
context:
space:
mode:
Diffstat (limited to 'mp_msg.c')
-rw-r--r--mp_msg.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/mp_msg.c b/mp_msg.c
index 8099305d6f..5b573a389f 100644
--- a/mp_msg.c
+++ b/mp_msg.c
@@ -18,14 +18,6 @@
char* get_term_charset(void);
#endif
-#if defined(FOR_MENCODER)
-#undef CONFIG_GUI
-int use_gui;
-#endif
-
-#ifdef CONFIG_GUI
-#include "gui/interface.h"
-#endif
#include "mp_msg.h"
/* maximum message length of mp_msg */
@@ -186,11 +178,6 @@ void mp_msg(int mod, int lev, const char *format, ... ){
tmp[MSGSIZE_MAX-2] = '\n';
tmp[MSGSIZE_MAX-1] = 0;
-#ifdef CONFIG_GUI
- if(use_gui)
- guiMessageBox(lev, tmp);
-#endif
-
#if defined(CONFIG_ICONV) && defined(MSG_CHARSET)
if (mp_msg_charset && strcasecmp(mp_msg_charset, "noconv")) {
char tmp2[MSGSIZE_MAX];