all repos — fluxbox @ 10523692d670790b410e58f7673c0a8d4131aa10

custom fork of the fluxbox windowmanager

const fixes
fluxgen fluxgen
commit

10523692d670790b410e58f7673c0a8d4131aa10

parent

35cf32850ef01877fc9fb528a42c051e1c7e1817

1 files changed, 5 insertions(+), 5 deletions(-)

jump to
M src/Window.ccsrc/Window.cc

@@ -22,7 +22,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: Window.cc,v 1.95 2002/10/25 21:01:49 fluxgen Exp $ +// $Id: Window.cc,v 1.96 2002/10/29 16:24:54 fluxgen Exp $ #include "Window.hh"

@@ -2956,7 +2956,7 @@ break;

default: dtty = 0; - dbby = screen->getToolbar()->getY(); + dbby = screen->getToolbar()->y(); break; }

@@ -3339,9 +3339,9 @@

//finds and redraw the icon label void FluxboxWindow::updateIcon() { if (Fluxbox::instance()->useIconBar()) { - IconBar *iconbar = 0; - IconBarObj *icon = 0; - if ((iconbar = screen->getToolbar()->getIconBar()) != 0) { + const IconBar *iconbar = 0; + const IconBarObj *icon = 0; + if ((iconbar = screen->getToolbar()->iconBar()) != 0) { if ((icon = iconbar->findIcon(this)) != 0) iconbar->draw(icon, icon->width()); }