https://bugs.kde.org/show_bug.cgi?id=329980
Thiago Sueto <herzensch...@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |herzensch...@gmail.com --- Comment #1 from Thiago Sueto <herzensch...@gmail.com> --- I've just grepped all occurrences of this in KWin. So I'm guessing this is still relevant. grep -n -r "sendClientToScreen" . ./xdgshellclient.cpp:1568: workspace()->sendClientToScreen( this, currentScreen ); ./workspace.cpp:1252:void Workspace::sendClientToScreen(AbstractClient* c, int screen) ./x11client.cpp:4636: workspace()->sendClientToScreen(this, currentScreen); ./rules.cpp:858: workspace()->sendClientToScreen(this, screen()); ./workspace.h:292: void sendClientToScreen(AbstractClient* c, int screen); ./abstract_client.cpp:1002: workspace()->sendClientToScreen(this, screen()); // checks rule validity ./useractions.cpp:775: Workspace::self()->sendClientToScreen(m_client.data(), screen); ./useractions.cpp:1200: sendClientToScreen(active_client, i); ./useractions.cpp:1208: sendClientToScreen(active_client, (active_client->screen() + 1) % screens()->count()); ./useractions.cpp:1214: sendClientToScreen(active_client, (active_client->screen() + screens()->count() - 1) % screens()->count()); ./scripting/workspace_wrapper.cpp:360:void WorkspaceWrapper::sendClientToScreen(AbstractClient *client, int screen) ./scripting/workspace_wrapper.cpp:365: workspace()->sendClientToScreen(client, screen); ./scripting/workspace_wrapper.h:336: void sendClientToScreen(KWin::AbstractClient *client, int screen); ./effects.cpp:923: Workspace::self()->sendClientToScreen(cl, screen); ./placement.cpp:666: workspace()->sendClientToScreen(this, screen()); // checks rule validity ./activation.cpp:832: workspace()->sendClientToScreen(this, asn_data.xinerama()); The only occurrence of a full match of Workspace::sendClientToScreen is ./workspace.cpp:1252:void Workspace::sendClientToScreen(AbstractClient* c, int screen) -- You are receiving this mail because: You are watching all bug changes.