← Back to team overview

compiz team mailing list archive

[Bug 478366] [NEW] [karmic] Kde compatibility plugin doesn't work on 64bit machines

 

Public bug reported:

Binary package hint: compiz-fusion-plugins-main

The "KDE compatibility" plugin doesn't show window previews in the
plasma widget on 64bit machines, instead only a blank rectangle is being
shown. Reason for this is incorrect cast after call to
XGetWindowProperty function - as the docs say, if format == 32, the data
types are actually longs. This simple patch to src/kdecompat/kdecompat.c
fixes the issue:

249,250c249,250
< 	    int *data    = (int *) propData;
< 	    int nPreview = *data++;
---
> 	    long *data    = (long *) propData;
> 	    long nPreview = *data++;

** Affects: compiz-fusion-plugins-main (Ubuntu)
     Importance: Undecided
         Status: New

-- 
[karmic] Kde compatibility plugin doesn't work on 64bit machines
https://bugs.launchpad.net/bugs/478366
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz-fusion-plugins-main in ubuntu.



Follow ups

References