[Konsole-devel] [Bug 83974] improper value of WM_CLASS property

Waldo Bastian bastian at kde.org
Sat Jul 31 13:11:02 UTC 2004


------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
      
http://bugs.kde.org/show_bug.cgi?id=83974      
bastian kde org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED



------- Additional Comments From bastian kde org  2004-07-31 15:11 -------
CVS commit by waba: 

Disable COMPOSITE, the QApplication constructor required for it doesn't
parse command line arguments and fails to set qAppClass. (BR83974)
Can be reenabled once Qt has proper support for it.
CCMAIL: 83974-done bugs kde org


  M +6 -0      main.cpp   1.268


--- kdebase/konsole/konsole/main.cpp  #1.267:1.268
 @ -35,7 +35,11  @
 #include "konsole.h"
 
+// COMPOSITE disabled by default because the QApplication constructor
+// needed to enable the ARGB32 visual has undesired side effects.
+#if 0
 #if defined(Q_WS_X11) && defined(HAVE_XRENDER) && QT_VERSION >= 0x030300
 # define COMPOSITE
 #endif
+#endif
 
 #ifdef COMPOSITE
 @ -64,5 +68,7  @ static KCmdLineOptions options[] =
    { "noscrollbar",     I18N_NOOP("Do not display scrollbar"), 0 },
    { "noxft",           I18N_NOOP("Do not use Xft (Anti-Aliasing)"), 0 },
+#ifdef COMPOSITE
    { "noargb",          I18N_NOOP("Do not use the ARGB32 visual (Transparency)"), 0 },
+#endif
    { "vt_sz CCxLL",     I18N_NOOP("Terminal size in columns x lines"), 0 },
    { "noresize",        I18N_NOOP("Terminal size is fixed"), 0 },



More information about the konsole-devel mailing list