mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Move MultiLedger to gnc-ledger-display.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@5225 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
7758925710
commit
2583487b39
@ -28,7 +28,6 @@
|
||||
|
||||
#include "AccWindow.h"
|
||||
#include "FileDialog.h"
|
||||
#include "MultiLedger.h"
|
||||
#include "account-tree.h"
|
||||
#include "dialog-account.h"
|
||||
#include "dialog-utils.h"
|
||||
@ -40,6 +39,7 @@
|
||||
#include "gnc-dateedit.h"
|
||||
#include "gnc-engine-util.h"
|
||||
#include "gnc-engine.h"
|
||||
#include "gnc-ledger-display.h"
|
||||
#include "gnc-ui.h"
|
||||
#include "messages.h"
|
||||
#include "query-user.h"
|
||||
|
@ -31,7 +31,6 @@
|
||||
#include <time.h>
|
||||
|
||||
#include "FileDialog.h"
|
||||
#include "MultiLedger.h"
|
||||
#include "Query.h"
|
||||
#include "RegWindow.h"
|
||||
#include "account-tree.h"
|
||||
@ -41,6 +40,7 @@
|
||||
#include "gnc-component-manager.h"
|
||||
#include "gnc-dateedit.h"
|
||||
#include "gnc-engine-util.h"
|
||||
#include "gnc-ledger-display.h"
|
||||
#include "gnc-ui.h"
|
||||
#include "messages.h"
|
||||
#include "splitreg.h"
|
||||
|
@ -26,7 +26,7 @@
|
||||
|
||||
#include <gnome.h>
|
||||
|
||||
#include "MultiLedger.h"
|
||||
#include "gnc-ledger-display.h"
|
||||
|
||||
|
||||
typedef struct _SelectDateDialog SelectDateDialog;
|
||||
|
@ -33,7 +33,6 @@
|
||||
#include "SchedXaction.h"
|
||||
#include "gnc-book.h"
|
||||
#include "FileDialog.h"
|
||||
#include "MultiLedger.h"
|
||||
#include "gnucash-sheet.h"
|
||||
|
||||
#include "window-register.h"
|
||||
@ -44,6 +43,7 @@
|
||||
#include "gnc-dateedit.h"
|
||||
#include "gnc-engine-util.h"
|
||||
#include "gnc-frequency.h"
|
||||
#include "gnc-ledger-display.h"
|
||||
|
||||
#include "messages.h"
|
||||
#include "query-user.h"
|
||||
|
@ -27,13 +27,13 @@
|
||||
#include <gnome.h>
|
||||
|
||||
#include "FileDialog.h"
|
||||
#include "MultiLedger.h"
|
||||
#include "dialog-transfer.h"
|
||||
#include "dialog-utils.h"
|
||||
#include "global-options.h"
|
||||
#include "gnc-amount-edit.h"
|
||||
#include "gnc-component-manager.h"
|
||||
#include "gnc-dateedit.h"
|
||||
#include "gnc-ledger-display.h"
|
||||
#include "gnc-engine-util.h"
|
||||
#include "gnc-euro.h"
|
||||
#include "gnc-exp-parser.h"
|
||||
|
@ -35,7 +35,6 @@
|
||||
#include <time.h>
|
||||
|
||||
#include "AccWindow.h"
|
||||
#include "MultiLedger.h"
|
||||
#include "RegWindow.h"
|
||||
#include "Scrub.h"
|
||||
#include "date.h"
|
||||
@ -47,6 +46,7 @@
|
||||
#include "gnc-component-manager.h"
|
||||
#include "gnc-dateedit.h"
|
||||
#include "gnc-engine-util.h"
|
||||
#include "gnc-ledger-display.h"
|
||||
#include "gnc-ui-util.h"
|
||||
#include "gnc-ui.h"
|
||||
#include "guile-util.h"
|
||||
|
@ -35,7 +35,6 @@
|
||||
|
||||
#include "AccWindow.h"
|
||||
#include "FileDialog.h"
|
||||
#include "MultiLedger.h"
|
||||
#include "RegWindow.h"
|
||||
#include "Scrub.h"
|
||||
#include "dialog-find-transactions.h"
|
||||
@ -46,6 +45,7 @@
|
||||
#include "gnc-dateedit.h"
|
||||
#include "gnc-engine-util.h"
|
||||
#include "gnc-euro.h"
|
||||
#include "gnc-ledger-display.h"
|
||||
#include "gnc-pricedb.h"
|
||||
#include "gnc-ui-util.h"
|
||||
#include "gnc-ui.h"
|
||||
|
@ -25,7 +25,7 @@
|
||||
#define WINDOW_REGISTER_H
|
||||
|
||||
#include "RegWindow.h"
|
||||
#include "MultiLedger.h"
|
||||
#include "gnc-ledger-display.h"
|
||||
|
||||
RegWindow * regWindowLedger(xaccLedgerDisplay *ledger);
|
||||
|
||||
|
@ -1,8 +1,8 @@
|
||||
pkglib_LTLIBRARIES = libgncmod-ledger-core.la
|
||||
|
||||
libgncmod_ledger_core_la_SOURCES = \
|
||||
gnc-ledger-display.c \
|
||||
gncmod-ledger-core.c \
|
||||
MultiLedger.c \
|
||||
split-register.c \
|
||||
split-register-control.c \
|
||||
split-register-load.c \
|
||||
@ -11,7 +11,7 @@ libgncmod_ledger_core_la_SOURCES = \
|
||||
split-register-util.c
|
||||
|
||||
noinst_HEADERS = \
|
||||
MultiLedger.h \
|
||||
gnc-ledger-display.h \
|
||||
RegWindow.h \
|
||||
split-register.h \
|
||||
split-register-control.h \
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*******************************************************************\
|
||||
* MultiLedger.c -- utilities for dealing with multiple *
|
||||
* register/ledger windows in GnuCash *
|
||||
/********************************************************************\
|
||||
* gnc-ledger-display.c -- utilities for dealing with multiple *
|
||||
* register/ledger windows in GnuCash *
|
||||
* *
|
||||
* Copyright (C) 1997 Robin D. Clark *
|
||||
* Copyright (C) 1997, 1998 Linas Vepstas *
|
||||
@ -27,7 +27,6 @@
|
||||
|
||||
#include "Account.h"
|
||||
#include "Group.h"
|
||||
#include "MultiLedger.h"
|
||||
#include "Query.h"
|
||||
#include "Transaction.h"
|
||||
#include "FileDialog.h"
|
||||
@ -35,6 +34,7 @@
|
||||
#include "global-options.h"
|
||||
#include "gnc-component-manager.h"
|
||||
#include "gnc-engine-util.h"
|
||||
#include "gnc-ledger-display.h"
|
||||
#include "split-register-control.h"
|
||||
#include "split-register-model.h"
|
||||
|
@ -1,9 +1,10 @@
|
||||
/*******************************************************************\
|
||||
* MultiLedger.h -- utilities for dealing with multiple *
|
||||
* register/ledger windows in GnuCash *
|
||||
/********************************************************************\
|
||||
* gnc-ledger-display.h -- utilities for dealing with multiple *
|
||||
* register/ledger windows in GnuCash *
|
||||
* *
|
||||
* Copyright (C) 1997 Robin D. Clark *
|
||||
* Copyright (C) 1997, 1998 Linas Vepstas *
|
||||
* Copyright (C) 2001 Linux Developers Group *
|
||||
* *
|
||||
* This program is free software; you can redistribute it and/or *
|
||||
* modify it under the terms of the GNU General Public License as *
|
||||
@ -21,8 +22,8 @@
|
||||
* *
|
||||
\********************************************************************/
|
||||
|
||||
#ifndef MULTI_LEDGER_H
|
||||
#define MULTI_LEDGER_H
|
||||
#ifndef GNC_LEDGER_DISPLAY_H
|
||||
#define GNC_LEDGER_DISPLAY_H
|
||||
|
||||
#include "config.h"
|
||||
|
||||
@ -121,4 +122,3 @@ void xaccLedgerDisplayClose (xaccLedgerDisplay * ledger_display);
|
||||
void xaccDestroyLedgerDisplay (Account *account);
|
||||
|
||||
#endif
|
||||
|
@ -24,7 +24,7 @@
|
||||
#define SPLIT_REGISTER_P_H
|
||||
|
||||
#include "Group.h"
|
||||
#include "MultiLedger.h"
|
||||
#include "gnc-ledger-display.h"
|
||||
#include "splitreg.h"
|
||||
|
||||
|
||||
|
@ -107,13 +107,13 @@
|
||||
|
||||
#include "Account.h"
|
||||
#include "FileDialog.h"
|
||||
#include "MultiLedger.h"
|
||||
#include "combocell.h"
|
||||
#include "datecell.h"
|
||||
#include "global-options.h"
|
||||
#include "gnc-component-manager.h"
|
||||
#include "gnc-engine-util.h"
|
||||
#include "split-register-p.h"
|
||||
#include "gnc-ledger-display.h"
|
||||
#include "gnc-ui-util.h"
|
||||
#include "gnc-ui.h"
|
||||
#include "guile-util.h"
|
||||
|
Loading…
Reference in New Issue
Block a user