all repos — openbox @ 0cfca85d27213ef8a308a6d6a5242432ee786837

openbox fork - make it a bit more like ryudo

changed version number to 1.0.0. fixed a warning in BaseMenu from pointer->reference conversion
Dana Jansens danakj@orodu.net
commit

0cfca85d27213ef8a308a6d6a5242432ee786837

parent

d2bcec1cda227de11fef6c62a6f4aae357c3760f

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

jump to
M autom4te.cache/output.0autom4te.cache/output.0

@@ -1410,7 +1410,7 @@

PACKAGE=openbox -VERSION=0.99.0 +VERSION=1.0.0 if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5
M autom4te.cache/requestsautom4te.cache/requests

@@ -24,8 +24,8 @@ 'AC_HEADER_TIME' => 1,

'AC_FUNC_SETVBUF_REVERSED' => 1, 'AC_HEADER_SYS_WAIT' => 1, 'AC_TYPE_UID_T' => 1, - 'AM_CONDITIONAL' => 1, 'AC_CHECK_LIB' => 1, + 'AM_CONDITIONAL' => 1, 'AC_PROG_LN_S' => 1, 'AC_FUNC_MEMCMP' => 1, 'AC_FUNC_FORK' => 1,

@@ -47,8 +47,8 @@ 'AC_CHECK_HEADERS' => 1,

'AC_TYPE_MODE_T' => 1, 'AC_CHECK_TYPES' => 1, 'AC_PROG_YACC' => 1, - 'AC_TYPE_PID_T' => 1, 'AC_FUNC_STRERROR_R' => 1, + 'AC_TYPE_PID_T' => 1, 'AC_STRUCT_ST_BLOCKS' => 1, 'AC_PROG_GCC_TRADITIONAL' => 1, 'AC_TYPE_SIGNAL' => 1,

@@ -83,11 +83,11 @@ 'AC_TYPE_OFF_T' => 1,

'AC_FUNC_MALLOC' => 1, 'AC_FUNC_ERROR_AT_LINE' => 1, 'AC_FUNC_FSEEKO' => 1, - 'AC_FUNC_MMAP' => 1, 'AC_STRUCT_TM' => 1, + 'AC_FUNC_MMAP' => 1, 'AC_SUBST' => 1, - 'AC_PROG_CC' => 1, - 'AC_PROG_LIBTOOL' => 1 + 'AC_PROG_LIBTOOL' => 1, + 'AC_PROG_CC' => 1 } ], 'Request' ) );
M configureconfigure

@@ -1410,7 +1410,7 @@

PACKAGE=openbox -VERSION=0.99.0 +VERSION=1.0.0 if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5
M configure.inconfigure.in

@@ -1,7 +1,7 @@

dnl configure.in for Openbox dnl Initialize autoconf and automake AC_INIT(src/openbox.cc) -AM_INIT_AUTOMAKE(openbox,0.99.0,no-define) +AM_INIT_AUTOMAKE(openbox,1.0.0,no-define) dnl Determine default prefix test x$prefix = "xNONE" && prefix="$ac_default_prefix"
M src/Basemenu.ccsrc/Basemenu.cc

@@ -49,7 +49,7 @@ #include "Screen.h"

static Basemenu *shown = (Basemenu *) 0; -Basemenu::Basemenu(BScreen &scrn) : screen(scrn), openbox(scrn.getOpenbox()) { +Basemenu::Basemenu(BScreen &scrn) : openbox(scrn.getOpenbox()), screen(scrn) { image_ctrl = screen.getImageControl(); display = openbox.getXDisplay(); parent = (Basemenu *) 0;