diff options
Diffstat (limited to 'src/Window.cc')
-rw-r--r-- | src/Window.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Window.cc b/src/Window.cc index 37b7757..162ecd4 100644 --- a/src/Window.cc +++ b/src/Window.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: Window.cc,v 1.95 2002/10/25 21:01:49 fluxgen Exp $ | 25 | // $Id: Window.cc,v 1.96 2002/10/29 16:24:54 fluxgen Exp $ |
26 | 26 | ||
27 | #include "Window.hh" | 27 | #include "Window.hh" |
28 | 28 | ||
@@ -2956,7 +2956,7 @@ void FluxboxWindow::motionNotifyEvent(XMotionEvent *me) { | |||
2956 | 2956 | ||
2957 | default: | 2957 | default: |
2958 | dtty = 0; | 2958 | dtty = 0; |
2959 | dbby = screen->getToolbar()->getY(); | 2959 | dbby = screen->getToolbar()->y(); |
2960 | break; | 2960 | break; |
2961 | } | 2961 | } |
2962 | 2962 | ||
@@ -3339,9 +3339,9 @@ void FluxboxWindow::stopResizing(Window win) { | |||
3339 | //finds and redraw the icon label | 3339 | //finds and redraw the icon label |
3340 | void FluxboxWindow::updateIcon() { | 3340 | void FluxboxWindow::updateIcon() { |
3341 | if (Fluxbox::instance()->useIconBar()) { | 3341 | if (Fluxbox::instance()->useIconBar()) { |
3342 | IconBar *iconbar = 0; | 3342 | const IconBar *iconbar = 0; |
3343 | IconBarObj *icon = 0; | 3343 | const IconBarObj *icon = 0; |
3344 | if ((iconbar = screen->getToolbar()->getIconBar()) != 0) { | 3344 | if ((iconbar = screen->getToolbar()->iconBar()) != 0) { |
3345 | if ((icon = iconbar->findIcon(this)) != 0) | 3345 | if ((icon = iconbar->findIcon(this)) != 0) |
3346 | iconbar->draw(icon, icon->width()); | 3346 | iconbar->draw(icon, icon->width()); |
3347 | } | 3347 | } |