diff options
author | markt <markt> | 2006-07-12 00:08:57 (GMT) |
---|---|---|
committer | markt <markt> | 2006-07-12 00:08:57 (GMT) |
commit | c929da4054f9fa7458bce2f4b46787e5484af850 (patch) | |
tree | 8987dbe8d8de8be57551d811f836843937487261 /src/CommandDialog.cc | |
parent | e1fdf51f4e7bf0d645c55b761ad5d997698b4818 (diff) | |
download | fluxbox-c929da4054f9fa7458bce2f4b46787e5484af850.zip fluxbox-c929da4054f9fa7458bce2f4b46787e5484af850.tar.bz2 |
replacing some instances of focusedWindow()->fbwindow() with focusedFbWindow()
Diffstat (limited to 'src/CommandDialog.cc')
-rw-r--r-- | src/CommandDialog.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/CommandDialog.cc b/src/CommandDialog.cc index aeb9900..f28d789 100644 --- a/src/CommandDialog.cc +++ b/src/CommandDialog.cc | |||
@@ -90,9 +90,8 @@ void CommandDialog::hide() { | |||
90 | FbTk::FbWindow::hide(); | 90 | FbTk::FbWindow::hide(); |
91 | 91 | ||
92 | // return focus to fluxbox window | 92 | // return focus to fluxbox window |
93 | if (FocusControl::focusedWindow() && | 93 | if (FocusControl::focusedFbWindow()) |
94 | FocusControl::focusedWindow()->fbwindow()) | 94 | FocusControl::focusedFbWindow()->setInputFocus(); |
95 | FocusControl::focusedWindow()->fbwindow()->setInputFocus(); | ||
96 | 95 | ||
97 | } | 96 | } |
98 | 97 | ||