changed version number to 1.0.0. fixed a warning in BaseMenu from pointer->reference conversion

This commit is contained in:
Dana Jansens 2002-04-14 15:26:38 +00:00
parent d2bcec1cda
commit 0cfca85d27
5 changed files with 9 additions and 9 deletions

View file

@ -1410,7 +1410,7 @@ fi
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

View file

@ -24,8 +24,8 @@
'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_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_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' )
);

2
configure vendored
View file

@ -1410,7 +1410,7 @@ fi
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

View file

@ -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"

View file

@ -49,7 +49,7 @@ using namespace std;
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;