Various whitespace, line-wrap, and comment changes.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@14611 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Chris Shoemaker 2006-08-08 21:57:28 +00:00
parent 7ca685e5a9
commit 63f60a302c
4 changed files with 10 additions and 8 deletions

View File

@ -370,5 +370,5 @@ main (int argc, char ** argv)
qof_session_destroy(session);
print_test_results();
qof_close();
return 0;
return 0;
}

View File

@ -92,6 +92,7 @@ Splits plus the value of all of its sub-Accounts.
#include "gnc-engine.h"
#include "Split.h"
/* FIXME: These macros are not consistent with the type name */
#define GNC_IS_TRANS(obj) (QOF_CHECK_TYPE((obj), GNC_ID_TRANS))
#define GNC_TRANS(obj) (QOF_CHECK_CAST((obj), GNC_ID_TRANS, Transaction))

View File

@ -205,12 +205,12 @@ show_session_error (QofBackendError io_error,
case ERR_BACKEND_NO_ERR:
uh_oh = FALSE;
break;
case ERR_BACKEND_NO_HANDLER: {
fmt = _("No suitable backend was found for %s.");
gnc_error_dialog(parent, fmt, newfile);
break;
}
case ERR_BACKEND_NO_HANDLER:
fmt = _("No suitable backend was found for %s.");
gnc_error_dialog(parent, fmt, newfile);
break;
case ERR_BACKEND_NO_BACKEND:
fmt = _("The URL %s is not supported by this version of GnuCash.");
gnc_error_dialog (parent, fmt, newfile);

View File

@ -122,7 +122,8 @@ GType gnc_tree_model_account_get_type (void);
/** Create a new GtkTreeModel for manipulating gnucash accounts.
*
* @param group The account group to put at the top level of the tree hierarchy. */
* @param group The account group to put at the top level of the tree
* hierarchy. */
GtkTreeModel *gnc_tree_model_account_new (AccountGroup *group);
/** @} */