all repos — fluxbox @ 143be7a2d1858b5985ceffdd42a0e7fe7391d2d7

custom fork of the fluxbox windowmanager

minor iconbar constructor fix
fluxgen fluxgen
commit

143be7a2d1858b5985ceffdd42a0e7fe7391d2d7

parent

3797138f9384025285a69b1eb0c57f4cc6f6f1e3

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

jump to
M src/Toolbar.ccsrc/Toolbar.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: Toolbar.cc,v 1.69 2003/04/14 14:53:56 fluxgen Exp $ +// $Id: Toolbar.cc,v 1.70 2003/04/15 12:15:44 fluxgen Exp $ #include "Toolbar.hh"

@@ -271,7 +271,7 @@ frame.pbutton = None;

//DEL/fix -> remove useIconBar resource // if (Fluxbox::instance()->useIconBar()) - m_iconbar.reset(new IconBar(&screen(), frame.window_label.window(), m_theme.font())); + m_iconbar.reset(new IconBar(screen(), frame.window_label.window(), m_theme.font())); XMapSubwindows(display, frame.window.window());

@@ -349,7 +349,7 @@ void Toolbar::enableIconBar() {

// already on if (m_iconbar.get() != 0) return; - m_iconbar.reset(new IconBar(&screen(), frame.window_label.window(), m_theme.font())); + m_iconbar.reset(new IconBar(screen(), frame.window_label.window(), m_theme.font())); } void Toolbar::disableIconBar() {