aboutsummaryrefslogtreecommitdiff
path: root/src/Screen.cc
diff options
context:
space:
mode:
authorrathnor <rathnor>2003-04-16 14:43:06 (GMT)
committerrathnor <rathnor>2003-04-16 14:43:06 (GMT)
commitb3921bc4e6807ba759fe1b55b9da1f4885f88a1c (patch)
tree4c8b60de334dc67f80d0e71f13f675bed42f265e /src/Screen.cc
parent0750c1966badd4c1aaade6127a3d78e0375cf410 (diff)
downloadfluxbox-b3921bc4e6807ba759fe1b55b9da1f4885f88a1c.zip
fluxbox-b3921bc4e6807ba759fe1b55b9da1f4885f88a1c.tar.bz2
fix workspace warping and netizen updates for warping (Simon)
Diffstat (limited to 'src/Screen.cc')
-rw-r--r--src/Screen.cc11
1 files changed, 3 insertions, 8 deletions
diff --git a/src/Screen.cc b/src/Screen.cc
index 7f3efd3..c25de83 100644
--- a/src/Screen.cc
+++ b/src/Screen.cc
@@ -22,7 +22,7 @@
22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23// DEALINGS IN THE SOFTWARE. 23// DEALINGS IN THE SOFTWARE.
24 24
25// $Id: Screen.cc,v 1.124 2003/04/16 00:37:19 fluxgen Exp $ 25// $Id: Screen.cc,v 1.125 2003/04/16 14:43:01 rathnor Exp $
26 26
27 27
28#include "Screen.hh" 28#include "Screen.hh"
@@ -934,7 +934,7 @@ void BScreen::changeWorkspaceID(unsigned int id) {
934 934
935 if (focused && focused->isMoving()) { 935 if (focused && focused->isMoving()) {
936 if (doOpaqueMove()) 936 if (doOpaqueMove())
937 reassociateGroup(focused, id, true); 937 reassociateWindow(focused, id, true);
938 // don't reassociate if not opaque moving 938 // don't reassociate if not opaque moving
939 focused->pauseMoving(); 939 focused->pauseMoving();
940 } 940 }
@@ -945,7 +945,7 @@ void BScreen::changeWorkspaceID(unsigned int id) {
945 Workspace::Windows::iterator it = wins.begin(); 945 Workspace::Windows::iterator it = wins.begin();
946 for (; it != wins.end(); ++it) { 946 for (; it != wins.end(); ++it) {
947 if ((*it)->isStuck()) { 947 if ((*it)->isStuck()) {
948 reassociateGroup(*it, id, true); 948 reassociateWindow(*it, id, true);
949 } 949 }
950 } 950 }
951 951
@@ -1323,11 +1323,6 @@ string BScreen::getNameOfWorkspace(unsigned int workspace) const {
1323 } 1323 }
1324} 1324}
1325 1325
1326void BScreen::reassociateGroup(FluxboxWindow *w, unsigned int wkspc_id, bool ignore_sticky) {
1327 //!! TODO
1328 cerr<<__FILE__<<"("<<__FUNCTION__<<") TODO!"<<endl;
1329}
1330
1331void BScreen::reassociateWindow(FluxboxWindow *w, unsigned int wkspc_id, bool ignore_sticky) { 1326void BScreen::reassociateWindow(FluxboxWindow *w, unsigned int wkspc_id, bool ignore_sticky) {
1332 if (w == 0) 1327 if (w == 0)
1333 return; 1328 return;