aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2005-11-22 21:00:07 (GMT)
committerfluxgen <fluxgen>2005-11-22 21:00:07 (GMT)
commit37a435f1d7e694e32c74c65557558190cb2baf33 (patch)
tree452694b42256cf5fb2a13a1ca4d1ad852b69d77f /src
parent93e30412af3d40470fbf077619899b4f77ee6115 (diff)
downloadfluxbox-37a435f1d7e694e32c74c65557558190cb2baf33.zip
fluxbox-37a435f1d7e694e32c74c65557558190cb2baf33.tar.bz2
indentation
Diffstat (limited to 'src')
-rw-r--r--src/Window.cc50
1 files changed, 25 insertions, 25 deletions
diff --git a/src/Window.cc b/src/Window.cc
index 82df391..153a9c1 100644
--- a/src/Window.cc
+++ b/src/Window.cc
@@ -996,34 +996,34 @@ void FluxboxWindow::moveClientLeftOf(WinClient &win, WinClient &dest) {
996 996
997 997
998void FluxboxWindow::moveClientRightOf(WinClient &win, WinClient &dest) { 998void FluxboxWindow::moveClientRightOf(WinClient &win, WinClient &dest) {
999 frame().moveLabelButtonRightOf(*m_labelbuttons[&win], *m_labelbuttons[&dest]); 999 frame().moveLabelButtonRightOf(*m_labelbuttons[&win], *m_labelbuttons[&dest]);
1000 1000
1001 ClientList::iterator it = find(m_clientlist.begin(), 1001 ClientList::iterator it = find(m_clientlist.begin(),
1002 m_clientlist.end(), 1002 m_clientlist.end(),
1003 &win); 1003 &win);
1004 ClientList::iterator new_pos = find(m_clientlist.begin(), 1004 ClientList::iterator new_pos = find(m_clientlist.begin(),
1005 m_clientlist.end(), 1005 m_clientlist.end(),
1006 &dest); 1006 &dest);
1007 1007
1008 // make sure we found them 1008 // make sure we found them
1009 if (it == m_clientlist.end() || new_pos==m_clientlist.end()) { 1009 if (it == m_clientlist.end() || new_pos==m_clientlist.end())
1010 return; 1010 return;
1011 } 1011
1012 //moving a button to the right of itself results in no change 1012 //moving a button to the right of itself results in no change
1013 if( new_pos == it) { 1013 if (new_pos == it)
1014 return; 1014 return;
1015 }
1016 //remove from list
1017 m_clientlist.erase(it);
1018 //need to insert into the next position
1019 new_pos++;
1020 //insert on the new place
1021 if(new_pos == m_clientlist.end())
1022 m_clientlist.push_back(&win);
1023 else
1024 m_clientlist.insert(new_pos, &win);
1025 1015
1026 updateClientLeftWindow(); 1016 //remove from list
1017 m_clientlist.erase(it);
1018 //need to insert into the next position
1019 new_pos++;
1020 //insert on the new place
1021 if (new_pos == m_clientlist.end())
1022 m_clientlist.push_back(&win);
1023 else
1024 m_clientlist.insert(new_pos, &win);
1025
1026 updateClientLeftWindow();
1027} 1027}
1028 1028
1029/// Update LEFT window atom on all clients. 1029/// Update LEFT window atom on all clients.