From d1c12c2f13cdf7a318fa14f0f658e7d67bae3bc7 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Fri, 27 Mar 2015 15:00:30 -0400 Subject: 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?). --- libLumina/LuminaX11.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'libLumina/LuminaX11.h') 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); }; -- cgit