aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2002-10-29 16:24:54 (GMT)
committerfluxgen <fluxgen>2002-10-29 16:24:54 (GMT)
commit10523692d670790b410e58f7673c0a8d4131aa10 (patch)
tree5537c4cc4cb46f81b7736afe92864cf400323b5e
parent35cf32850ef01877fc9fb528a42c051e1c7e1817 (diff)
downloadfluxbox_pavel-10523692d670790b410e58f7673c0a8d4131aa10.zip
fluxbox_pavel-10523692d670790b410e58f7673c0a8d4131aa10.tar.bz2
const fixes
-rw-r--r--src/Window.cc10
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
3340void FluxboxWindow::updateIcon() { 3340void 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 }