aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-04-25 16:07:46 (GMT)
committerfluxgen <fluxgen>2003-04-25 16:07:46 (GMT)
commit8832a07533a12e404bd9ee7370388157a19bd4d5 (patch)
tree0c2a7b1790ddd29266b4692f6efa9b236327a88a /src
parent45ed9ca96fcdbada802667264bb0ea50111a08b6 (diff)
downloadfluxbox_pavel-8832a07533a12e404bd9ee7370388157a19bd4d5.zip
fluxbox_pavel-8832a07533a12e404bd9ee7370388157a19bd4d5.tar.bz2
cleaning
Diffstat (limited to 'src')
-rw-r--r--src/Screen.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Screen.cc b/src/Screen.cc
index ac60d79..58a64dc 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.133 2003/04/25 11:56:13 fluxgen Exp $ 25// $Id: Screen.cc,v 1.134 2003/04/25 16:07:46 fluxgen Exp $
26 26
27 27
28#include "Screen.hh" 28#include "Screen.hh"
@@ -673,7 +673,7 @@ BScreen::BScreen(ResourceManager &rm,
673 673
674 if (children[i] == None) continue; 674 if (children[i] == None) continue;
675 675
676 XWMHints *wmhints = XGetWMHints(getBaseDisplay()->getXDisplay(), 676 XWMHints *wmhints = XGetWMHints(FbTk::App::instance()->display(),
677 children[i]); 677 children[i]);
678 678
679 if (wmhints) { 679 if (wmhints) {
@@ -1034,7 +1034,7 @@ void BScreen::changeWorkspaceID(unsigned int id) {
1034 return; 1034 return;
1035 1035
1036 if (id != current_workspace->workspaceID()) { 1036 if (id != current_workspace->workspaceID()) {
1037 XSync(BaseDisplay::getXDisplay(), true); 1037 XSync(FbTk::App::instance()->display(), true);
1038 FluxboxWindow *focused = Fluxbox::instance()->getFocusedWindow(); 1038 FluxboxWindow *focused = Fluxbox::instance()->getFocusedWindow();
1039#ifdef DEBUG 1039#ifdef DEBUG
1040 cerr<<__FILE__<<"("<<__FUNCTION__<<"): focused = "<<focused<<endl; 1040 cerr<<__FILE__<<"("<<__FUNCTION__<<"): focused = "<<focused<<endl;
@@ -1101,7 +1101,7 @@ void BScreen::sendToWorkspace(unsigned int id, FluxboxWindow *win, bool changeWS
1101 win = Fluxbox::instance()->getFocusedWindow(); 1101 win = Fluxbox::instance()->getFocusedWindow();
1102 1102
1103 if (id != current_workspace->workspaceID()) { 1103 if (id != current_workspace->workspaceID()) {
1104 XSync(BaseDisplay::getXDisplay(), True); 1104 XSync(FbTk::App::instance()->display(), True);
1105 1105
1106 if (win && &win->getScreen() == this && 1106 if (win && &win->getScreen() == this &&
1107 (! win->isStuck())) { 1107 (! win->isStuck())) {