From c57a4f7df920807d77c9b8a0303c150988811b97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Minisini?= Date: Sun, 1 May 2011 15:34:34 +0000 Subject: [PATCH] [GB.QT4] * NEW: Do not disable Glib event loop support on KDE. It takes CPU and memory, but Phonon needs it apparently to use PulseAudio. git-svn-id: svn://localhost/gambas/trunk@3825 867c0c6c-44f3-4631-809d-bfa615b0a4ec --- gb.qt4/src/main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gb.qt4/src/main.cpp b/gb.qt4/src/main.cpp index 0cb006572..4a47a8dd6 100644 --- a/gb.qt4/src/main.cpp +++ b/gb.qt4/src/main.cpp @@ -1059,7 +1059,8 @@ int EXPORT GB_INIT(void) { char *env; - // Disable GLib support on KDE only + // Do not disable GLib support + /*env = getenv("KDE_FULL_SESSION"); if (env && !strcasecmp(env, "true")) putenv((char *)"QT_NO_GLIB=1");*/