mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
* move dialog-account.[ch] from src/dialog-account to src/gnome-utils
fix all references (Makefile.am) to remove src/dialog-account * configure.in: remove src/account-dialog/Makefile git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@7358 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
cb667129b0
commit
6535bbe055
@ -16,6 +16,10 @@
|
||||
* dialog-account.[ch] -- add "destroy-window" callback registration.
|
||||
remove dependencies on register/ledger
|
||||
* split-register.c -- register "destroy-window" callback
|
||||
|
||||
* move dialog-account.[ch] from src/dialog-account to src/gnome-utils
|
||||
fix all references (Makefile.am) to remove src/dialog-account
|
||||
* configure.in: remove src/account-dialog/Makefile
|
||||
|
||||
2002-10-19 Christian Stimming <stimming@tuhh.de>
|
||||
|
||||
|
@ -942,7 +942,6 @@ AC_OUTPUT( m4/Makefile intl/Makefile
|
||||
src/core-utils/Makefile
|
||||
src/calculation/Makefile
|
||||
src/calculation/test/Makefile
|
||||
src/dialog-account/Makefile
|
||||
src/doc/Makefile
|
||||
src/doc/design/Makefile
|
||||
src/doc/xml/Makefile
|
||||
|
@ -320,7 +320,7 @@ src/gnome-utils/gnc-dense-cal.c
|
||||
src/gnome-utils/dialog-utils.c
|
||||
src/gnome-utils/gnc-html.c
|
||||
src/gnome-utils/commodity.glade
|
||||
src/dialog-account/dialog-account.c
|
||||
src/gnome-utils/dialog-account.c
|
||||
src/business/dialog-tax-table/gncmod-dialog-tax-table.c
|
||||
src/business/dialog-tax-table/dialog-tax-table.c
|
||||
src/business/dialog-tax-table/tax-tables.glade
|
||||
|
@ -20,7 +20,6 @@ GUI_SUBDIRS_1 = \
|
||||
app-file
|
||||
|
||||
GUI_SUBDIRS_2 = \
|
||||
dialog-account \
|
||||
register \
|
||||
import-export \
|
||||
gnome \
|
||||
|
@ -21,6 +21,7 @@ AM_CFLAGS = \
|
||||
libgncmod_gnome_utils_la_SOURCES = \
|
||||
cursors.c \
|
||||
argv-list-converters.c \
|
||||
dialog-account.c \
|
||||
dialog-commodity.c \
|
||||
dialog-options.c \
|
||||
dialog-utils.c \
|
||||
@ -48,6 +49,7 @@ libgncmod_gnome_utils_la_SOURCES = \
|
||||
|
||||
gncincludedir = ${GNC_INCLUDE_DIR}
|
||||
gncinclude_HEADERS = \
|
||||
dialog-account.h \
|
||||
dialog-commodity.h \
|
||||
dialog-options.h \
|
||||
dialog-utils.h \
|
||||
|
2064
src/gnome-utils/dialog-account.c
Normal file
2064
src/gnome-utils/dialog-account.c
Normal file
File diff suppressed because it is too large
Load Diff
39
src/gnome-utils/dialog-account.h
Normal file
39
src/gnome-utils/dialog-account.h
Normal file
@ -0,0 +1,39 @@
|
||||
/********************************************************************\
|
||||
* dialog-account.h -- window for creating and editing accounts for *
|
||||
* GnuCash *
|
||||
* Copyright (C) 2000 Dave Peticolas <petcola@cs.ucdavis.edu> *
|
||||
* *
|
||||
* This program is free software; you can redistribute it and/or *
|
||||
* modify it under the terms of the GNU General Public License as *
|
||||
* published by the Free Software Foundation; either version 2 of *
|
||||
* the License, or (at your option) any later version. *
|
||||
* *
|
||||
* This program is distributed in the hope that it will be useful, *
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||
* GNU General Public License for more details. *
|
||||
* *
|
||||
* You should have received a copy of the GNU General Public License*
|
||||
* along with this program; if not, contact: *
|
||||
* *
|
||||
* Free Software Foundation Voice: +1-617-542-5942 *
|
||||
* 59 Temple Place - Suite 330 Fax: +1-617-542-2652 *
|
||||
* Boston, MA 02111-1307, USA gnu@gnu.org *
|
||||
\********************************************************************/
|
||||
|
||||
#ifndef DIALOG_ACCOUNT_H
|
||||
#define DIALOG_ACCOUNT_H
|
||||
|
||||
#include "AccWindow.h"
|
||||
|
||||
void gnc_ui_edit_account_window_raise (AccountWindow * winData);
|
||||
|
||||
/*
|
||||
* register a callback that get's called when the account has changed
|
||||
* so significantly that you need to destroy yourself. In particular
|
||||
* this is used by the ledger display to destroy ledgers when the
|
||||
* account type has changed.
|
||||
*/
|
||||
void gnc_ui_register_account_destroy_callback (void (*cb)(Account *));
|
||||
|
||||
#endif
|
@ -106,7 +106,6 @@ AM_CFLAGS = \
|
||||
-I${top_srcdir}/src \
|
||||
-I${top_srcdir}/src/core-utils \
|
||||
-I${top_srcdir}/src/calculation \
|
||||
-I${top_srcdir}/src/dialog-account \
|
||||
-I${top_srcdir}/src/engine \
|
||||
-I${top_srcdir}/src/network-utils \
|
||||
-I${top_srcdir}/src/app-utils \
|
||||
|
@ -19,7 +19,6 @@ libgncmod_generic_import_la_LIBADD = \
|
||||
${top_builddir}/src/app-file/libgncmod-app-file.la \
|
||||
${top_builddir}/src/gnc-module/libgncmodule.la \
|
||||
${top_builddir}/src/engine/libgncmod-engine.la \
|
||||
${top_builddir}/src/dialog-account/libdialog-account.la \
|
||||
${top_builddir}/src/register/ledger-core/libgncmod-ledger-core.la \
|
||||
${GLADE_LIBS} \
|
||||
${GLIB_LIBS}
|
||||
@ -35,7 +34,6 @@ AM_CFLAGS = \
|
||||
-I${top_srcdir}/src/app-file \
|
||||
-I${top_srcdir}/src/gnome \
|
||||
-I${top_srcdir}/src/gnome-utils \
|
||||
-I${top_srcdir}/src/dialog-account \
|
||||
${G_WRAP_COMPILE_ARGS} \
|
||||
${GUILE_INCS} \
|
||||
${GLIB_CFLAGS} \
|
||||
|
@ -30,8 +30,7 @@ libgncmod_ledger_core_la_LIBADD = \
|
||||
${top_builddir}/src/gnome-utils/libgncmod-gnome-utils.la \
|
||||
${top_builddir}/src/app-utils/libgncmod-app-utils.la \
|
||||
${top_builddir}/src/register/register-core/libgncmod-register-core.la \
|
||||
${top_builddir}/src/register/register-gnome/libgncmod-register-gnome.la \
|
||||
${top_builddir}/src/dialog-account/libdialog-account.la
|
||||
${top_builddir}/src/register/register-gnome/libgncmod-register-gnome.la
|
||||
|
||||
AM_CFLAGS = \
|
||||
-I${top_srcdir}/src \
|
||||
@ -39,7 +38,6 @@ AM_CFLAGS = \
|
||||
-I${top_srcdir}/src/gnc-module \
|
||||
-I${top_srcdir}/src/app-utils \
|
||||
-I${top_srcdir}/src/gnome-utils \
|
||||
-I${top_srcdir}/src/dialog-account \
|
||||
-I${top_srcdir}/src/register/register-core \
|
||||
-I${top_srcdir}/src/register/register-gnome \
|
||||
${GUILE_INCS} \
|
||||
|
Loading…
Reference in New Issue
Block a user