diff options
author | Ken Moore <ken@pcbsd.org> | 2015-03-27 15:00:30 -0400 |
---|---|---|
committer | Ken Moore <ken@pcbsd.org> | 2015-03-27 15:00:30 -0400 |
commit | d1c12c2f13cdf7a318fa14f0f658e7d67bae3bc7 (patch) | |
tree | 87992f7d874e46720ad121379d475a2ef59b2173 /libLumina/LuminaX11.h | |
parent | Clean up a bit of the new XCB system tray embedding process. Still does not f... (diff) | |
download | lumina-d1c12c2f13cdf7a318fa14f0f658e7d67bae3bc7.tar.gz lumina-d1c12c2f13cdf7a318fa14f0f658e7d67bae3bc7.tar.bz2 lumina-d1c12c2f13cdf7a318fa14f0f658e7d67bae3bc7.zip |
Remove the XCB "WindowImage()" function from LuminaX11 - it is not working properly for some reason on FreeBSD11, and using the QScreen->grabWindow(ID) routine *does* work properly for some reason, so just use the Qt function instead from now on (maybe it has better fallback routines?).
Diffstat (limited to 'libLumina/LuminaX11.h')
-rw-r--r-- | libLumina/LuminaX11.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libLumina/LuminaX11.h b/libLumina/LuminaX11.h index d0b0765e..2c34c6f5 100644 --- a/libLumina/LuminaX11.h +++ b/libLumina/LuminaX11.h @@ -141,7 +141,6 @@ public: QString OldWindowIconName(WId win); //WM_ICON_NAME (old standard) bool WindowIsMaximized(WId win); QIcon WindowIcon(WId win); //_NET_WM_ICON - QPixmap WindowImage(WId win); //Pull the image directly from the window //Window Modification void SetAsSticky(WId); //Stick to all workspaces @@ -155,7 +154,6 @@ public: //Window Embedding/Detaching (for system tray) bool EmbedWindow(WId win, WId container); bool UnembedWindow(WId win); - //QPixmap GetTrayIconPixmap(WId win); }; |