From f099591e315a0fdcaf1a7c19018a88a22cf9c741 Mon Sep 17 00:00:00 2001 From: Geert Janssens Date: Sat, 13 Mar 2010 13:16:02 +0000 Subject: [PATCH] More doxygen.log-prompted typo fixes, patch by Jesse Weinstein git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@18900 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/app-utils/file-utils.h | 2 +- src/backend/sql/gnc-slots-sql.h | 9 ++++----- src/core-utils/gnc-filepath-utils.c | 8 +++----- src/core-utils/gnc-uri-utils.h | 18 +++++++++--------- src/engine/gnc-commodity.h | 16 ++++++++-------- src/gnome-utils/gnc-main-window.c | 4 ++-- src/gnome-utils/gnc-main-window.h | 10 ++++------ src/gnome-utils/gnc-tree-view.c | 18 +++++++++--------- src/gnome/gnc-plugin-page-account-tree.c | 2 +- src/gnome/gnc-plugin-page-register.c | 4 ++-- src/gnome/gnc-plugin-page-sx-list.c | 5 ++--- src/libqof/qof/qofid.h | 15 ++++++++------- src/register/register-core/cellblock.h | 4 ++-- .../report-gnome/gnc-plugin-page-report.c | 2 +- 14 files changed, 56 insertions(+), 61 deletions(-) diff --git a/src/app-utils/file-utils.h b/src/app-utils/file-utils.h index 16aaa3a835..245203ec83 100644 --- a/src/app-utils/file-utils.h +++ b/src/app-utils/file-utils.h @@ -107,7 +107,7 @@ gint64 gnc_getline (gchar **line, FILE *file); * * @param guid The guid of the book associated with this data file. * - * @param next_filename Return the next available file name if the + * @param filename Return the next available file name if the * data file cannot be found. * * @return The name of the data file that was located. diff --git a/src/backend/sql/gnc-slots-sql.h b/src/backend/sql/gnc-slots-sql.h index d345b83212..12a8324fbb 100644 --- a/src/backend/sql/gnc-slots-sql.h +++ b/src/backend/sql/gnc-slots-sql.h @@ -53,11 +53,9 @@ gboolean gnc_sql_slots_save( GncSqlBackend* be, const GUID* guid, */ gboolean gnc_sql_slots_delete( GncSqlBackend* be, const GUID* guid ); -/** - * gnc_sql_slots_load - Loads slots for an object from the db. +/** Loads slots for an object from the db. * * @param be SQL backend - * @param guid Object guid */ void gnc_sql_slots_load( GncSqlBackend* be, QofInstance* inst ); @@ -71,6 +69,9 @@ void gnc_sql_slots_load( GncSqlBackend* be, QofInstance* inst ); */ void gnc_sql_slots_load_for_list( GncSqlBackend* be, GList* list ); + +typedef QofInstance* (*BookLookupFn)( const GUID* guid, const QofBook* book ); + /** * gnc_sql_slots_load_for_sql_subquery - Loads slots for all objects whose guid is * supplied by a subquery. The subquery should be of the form "SELECT DISTINCT guid FROM ...". @@ -80,8 +81,6 @@ void gnc_sql_slots_load_for_list( GncSqlBackend* be, GList* list ); * @param subquery Subquery SQL string * @param lookup_fn Lookup function to get the right object from the book */ -typedef QofInstance* (*BookLookupFn)( const GUID* guid, const QofBook* book ); - void gnc_sql_slots_load_for_sql_subquery( GncSqlBackend* be, const gchar* subquery, BookLookupFn lookup_fn ); diff --git a/src/core-utils/gnc-filepath-utils.c b/src/core-utils/gnc-filepath-utils.c index 4a16ede695..d2be76af17 100644 --- a/src/core-utils/gnc-filepath-utils.c +++ b/src/core-utils/gnc-filepath-utils.c @@ -89,9 +89,7 @@ check_path_return_if_valid(gchar *path) return NULL; } -/** @fn char * gnc_resolve_file_path (const char * filefrag) - * - * @brief Create an absolute path when given a relative path; +/** @brief Create an absolute path when given a relative path; * otherwise return the argument. * * @warning filefrag should be a simple path fragment. It shouldn't @@ -180,8 +178,8 @@ gnc_resolve_file_path (const gchar * filefrag) /* ====================================================================== */ -/** @fn void gnc_validate_directory (const gchar *dirname) - * @brief Check that the supplied directory path exists, is a directory, and that the user has adequate permissions to use it. +/** @brief Check that the supplied directory path exists, is a directory, and + * that the user has adequate permissions to use it. * * @param dirname The path to check */ diff --git a/src/core-utils/gnc-uri-utils.h b/src/core-utils/gnc-uri-utils.h index 340f43443e..151a0f6ec8 100644 --- a/src/core-utils/gnc-uri-utils.h +++ b/src/core-utils/gnc-uri-utils.h @@ -44,7 +44,7 @@ * Uri's can take any of the following forms: * * @li @c /some/filesystem/path A simple file system path (unix style) - * @li @c c:\\some\windows\path A simple file system path (Windows style) + * @li @c c:\\some\\windows\\path A simple file system path (Windows style) * @li @c proto://[[username[:password]@]hostname[:port]]/path (universal uri) * * In the last form, anything in square brackets is optional. @@ -62,9 +62,9 @@ * the 'file' protocol, this will be NULL * @param port An optional port to connect to or 0 if the default port is to * be used. For the 'file' protocol this is always 0 as well. - * @username Optional user name found in this uri or NULL if none is found. - * @password Optional password found in this uri or NULL if none is found. - * @path The path found in this uri. Note that if the protocol is a file based + * @param username Optional user name found in this uri or NULL if none is found. + * @param password Optional password found in this uri or NULL if none is found. + * @param path The path found in this uri. Note that if the protocol is a file based * protocol, the path will be converted to an absolute path. * */ @@ -82,7 +82,7 @@ void gnc_uri_get_components (const gchar *uri, * Uri's can take any of the following forms: * * @li @c /some/filesystem/path A simple file system path (unix style) - * @li @c c:\\some\windows\path A simple file system path (Windows style) + * @li @c c:\\some\\windows\\path A simple file system path (Windows style) * @li @c proto://[[username[:password]@]hostname[:port]]/path (universal uri) * * In the last form, anything in square brackets is optional. @@ -103,7 +103,7 @@ gchar *gnc_uri_get_protocol (const gchar *uri); * Uri's can take any of the following forms: * * @li @c /some/filesystem/path A simple file system path (unix style) - * @li @c c:\\some\windows\path A simple file system path (Windows style) + * @li @c c:\\some\\windows\\path A simple file system path (Windows style) * @li @c proto://[[username[:password]@]hostname[:port]]/path (universal uri) * * In the last form, anything in square brackets is optional. @@ -138,11 +138,11 @@ gchar *gnc_uri_get_path (const gchar *uri); * @param port An optional port to set o, the uri, or 0 if no port is to be * set. This will be ignored for the 'file' type protocols ('file', 'xml', * 'sqlite'). - * @username Optional user name to set in the uri or NULL otherwise. This will + * @param username Optional user name to set in the uri or NULL otherwise. This will * be ignored for the 'file' type protocols ('file', 'xml', 'sqlite'). - * @password Optional password to set in the uri or NULL otherwise. This will + * @param password Optional password to set in the uri or NULL otherwise. This will * be ignored for the 'file' type protocols ('file', 'xml', 'sqlite'). - * @path The path to set in the uri. + * @param path The path to set in the uri. * * @return The normalized uri. */ diff --git a/src/engine/gnc-commodity.h b/src/engine/gnc-commodity.h index 9323ffe81f..89922be945 100644 --- a/src/engine/gnc-commodity.h +++ b/src/engine/gnc-commodity.h @@ -277,7 +277,7 @@ const char *gnc_quote_source_get_old_internal_name (const gnc_quote_source *sour * @param fullname The complete name of this commodity. E.G. "Acme * Systems, Inc." * - * @param namespace An aggregation of commodities. E.G. ISO4217, + * @param commodity_namespace An aggregation of commodities. E.G. ISO4217, * Nasdaq, Downbelow, etc. * * @param mnemonic An abbreviation for this stock. For publicly @@ -497,7 +497,7 @@ void gnc_commodity_set_mnemonic(gnc_commodity * cm, const char * mnemonic); * * @param cm A pointer to a commodity data structure. * - * @param namespace A pointer to the namespace for this commodity. + * @param new_namespace A pointer to the namespace for this commodity. * This string belongs to the caller and will be duplicated by the * engine. */ @@ -663,7 +663,7 @@ int gnc_commodity_compare_void(const void * a, const void * b); /** Checks to see if the specified commodity namespace is the * namespace for ISO 4217 currencies. * - * @param namespace The string to check. + * @param commodity_namespace The string to check. * * @return TRUE if the string indicates an ISO currency, FALSE otherwise. */ gboolean gnc_commodity_namespace_is_iso(const char *commodity_namespace); @@ -805,7 +805,7 @@ guint gnc_commodity_table_get_number_of_namespaces(const gnc_commodity_table* tb * * @param table A pointer to the commodity table * - * @param namespace The new namespace to check. + * @param commodity_namespace The new namespace to check. * * @return 1 if the namespace exists. 0 if it doesn't exist, or the * routine was passed a bad argument. */ @@ -835,7 +835,7 @@ GList * gnc_commodity_table_get_namespaces_list(const gnc_commodity_table * t); * * @param table A pointer to the commodity table * - * @param namespace The new namespace to be added. + * @param commodity_namespace The new namespace to be added. * * @param book The book that the new namespace will belong to. * @@ -848,7 +848,7 @@ gnc_commodity_namespace * gnc_commodity_table_add_namespace(gnc_commodity_table * * @param table A pointer to the commodity table * - * @param namespace The new namespace to be added. + * @param commodity_namespace The new namespace to be added. * * @return The a pointer to the namespace found, or NULL if the * namespace doesn't exist. */ @@ -860,7 +860,7 @@ gnc_commodity_namespace * gnc_commodity_table_find_namespace(const gnc_commodity * * @param table A pointer to the commodity table * - * @param namespace The namespace to be deleted. + * @param commodity_namespace The namespace to be deleted. * * @note This routine will destroy any commodities that exist as part * of this namespace. Use it carefully. */ @@ -885,7 +885,7 @@ guint gnc_commodity_table_get_size(const gnc_commodity_table* tbl); * * @param table A pointer to the commodity table * - * @param namespace A string indicating which commodities should be + * @param commodity_namespace A string indicating which commodities should be * returned. It is a required argument. * * @return A pointer to the list of commodities. NULL if an invalid diff --git a/src/gnome-utils/gnc-main-window.c b/src/gnome-utils/gnc-main-window.c index 9055faaa4a..37bed81a22 100644 --- a/src/gnome-utils/gnc-main-window.c +++ b/src/gnome-utils/gnc-main-window.c @@ -2201,7 +2201,7 @@ gnc_main_window_class_init (GncMainWindowClass *klass) * initializes the object private storage space. It also adds the * new object to a list (for memory tracking purposes). * - * @param view The new object instance created by the object system. + * @param window The new object instance created by the object system. * * @param klass A pointer to the class data structure for this * object. */ @@ -3990,7 +3990,7 @@ gnc_ui_get_toplevel (void) * This function is called via a vector off a generic window * interface. * - * @param window_in A pointer to a generic window. */ + * @param window A pointer to a generic window. */ static GtkWindow * gnc_main_window_get_gtk_window (GncWindow *window) { diff --git a/src/gnome-utils/gnc-main-window.h b/src/gnome-utils/gnc-main-window.h index 1668657ffe..1065860352 100644 --- a/src/gnome-utils/gnc-main-window.h +++ b/src/gnome-utils/gnc-main-window.h @@ -161,9 +161,8 @@ GncPluginPage *gnc_main_window_get_current_page (GncMainWindow *window); /** Update the name of the page in the main window. * - * @parm page The page to be updated. - * - * @parm name_in The new name for the page. + * @param page The page to be updated. + * @param name_in The new name for the page. */ void main_window_update_page_name (GncPluginPage *page, @@ -172,9 +171,8 @@ main_window_update_page_name (GncPluginPage *page, /** Update the color on the page tabs in the main window. * - * @parm page The page to be updated. - * - * @parm color_in The new color string for the page tab. + * @param page The page to be updated. + * @param color_in The new color string for the page tab. */ void main_window_update_page_color (GncPluginPage *page, diff --git a/src/gnome-utils/gnc-tree-view.c b/src/gnome-utils/gnc-tree-view.c index d3c8768c98..bbe024006c 100644 --- a/src/gnome-utils/gnc-tree-view.c +++ b/src/gnome-utils/gnc-tree-view.c @@ -592,7 +592,7 @@ gnc_tree_view_drop_ok_cb (GtkTreeView *view, * underlying GtkTreeModel. It propagates these changes to gconf to * keep it in sync with the user's view of the tree. * - * @param sortable The underlying sortable model. + * @param treesortable The underlying sortable model. * * @param view A pointer to the GncTreeView that displays the model * data. @@ -781,7 +781,7 @@ gtk_tree_view_size_allocate_cb (GtkWidget *widget, * that gconf visibility keys have been seen. (This handles the * 'first run' case where gconf should manage a view but no keys yet * exist in gconf.) If so, the gconf visibility key is returned. - * Otherwise the "'default visible column' list is checked and a + * Otherwise the 'default visible column' list is checked and a * value of TRUE returned if the pref name is found, otherwise FALSE. * * @param view A GncTreeView. @@ -898,7 +898,7 @@ gnc_tree_view_update_visibility (GtkTreeViewColumn *column, * is careful to prevent an infinite loop by blocking the * "sort-column-changed" callback that is attached to the model. * - * @param widget The tree view. + * @param view The tree view. * * @param name The sort order enum (in string form). Either * "ascending" or "descending". @@ -937,7 +937,7 @@ gnc_tree_view_set_sort_order (GncTreeView *view, * infinite loop by blocking the "sort-column-changed" callback that * is attached to the model. * - * @param widget The tree view. + * @param view The tree view. * * @param name The name of the column that should be made the sort column. * @@ -990,9 +990,9 @@ gnc_tree_view_set_sort_column (GncTreeView *view, * This function is careful to prevent an infinite loop by blocking * the "columns-changed" callback that is attached to the view. * - * @param widget The tree view. + * @param view The tree view. * - * @param name A list of pointers to strings. These strings are the + * @param column_names A list of pointers to strings. These strings are the * names of the columns in the order they should appear. * * @internal @@ -1044,11 +1044,11 @@ gnc_tree_view_set_column_order (GncTreeView *view, * @param client A pointer to the gconf client object from which * detected a change in gconf. Unused by this function. * - * @cnxn_id The identifier for the notification that this callback + * @param cnxn_id The identifier for the notification that this callback * represents. Unused since this code only has a single notification * request. * - * @entry A pointer to the key/value pair in gconf that changed. + * @param entry A pointer to the key/value pair in gconf that changed. * * @param data The tree view. * @@ -1786,7 +1786,7 @@ gnc_tree_view_configure_columns (GncTreeView *view) * @param resizable Whether to mark the column as user resizable. * This marking is only relevant for fixed width columns. * - * @param column_sort_function The function that GtkTreeModelSort + * @param column_sort_fn The function that GtkTreeModelSort * will call to compare two rows to determine their displayed order. * * @internal diff --git a/src/gnome/gnc-plugin-page-account-tree.c b/src/gnome/gnc-plugin-page-account-tree.c index b1ef611895..ee11e440a9 100644 --- a/src/gnome/gnc-plugin-page-account-tree.c +++ b/src/gnome/gnc-plugin-page-account-tree.c @@ -576,7 +576,7 @@ gnc_plugin_page_account_tree_destroy_widget (GncPluginPage *plugin_page) /** Save enough information about this account tree page that it can * be recreated next time the user starts gnucash. * - * @param page The page to save. + * @param plugin_page The page to save. * * @param key_file A pointer to the GKeyFile data structure where the * page information should be written. diff --git a/src/gnome/gnc-plugin-page-register.c b/src/gnome/gnc-plugin-page-register.c index 2abed18a7d..0a283f9bd8 100644 --- a/src/gnome/gnc-plugin-page-register.c +++ b/src/gnome/gnc-plugin-page-register.c @@ -980,7 +980,7 @@ static const gchar *style_names[] = /** Save enough information about this register page that it can be * recreated next time the user starts gnucash. * - * @param page The page to save. + * @param plugin_page The page to save. * * @param key_file A pointer to the GKeyFile data structure where the * page information should be written. @@ -3178,7 +3178,7 @@ gnc_plugin_page_register_close_cb (gpointer user_data) * responsible for finding all open registers containing the account * and closing them. * - * @param accoung A pointer to the account that was changed. + * @param account A pointer to the account that was changed. */ static void gppr_account_destroy_cb (Account *account) diff --git a/src/gnome/gnc-plugin-page-sx-list.c b/src/gnome/gnc-plugin-page-sx-list.c index 66bee7ad74..5e696e7b39 100644 --- a/src/gnome/gnc-plugin-page-sx-list.c +++ b/src/gnome/gnc-plugin-page-sx-list.c @@ -401,10 +401,9 @@ gnc_plugin_page_sx_list_destroy_widget (GncPluginPage *plugin_page) } } -/** - * Save enough information about this page that it can be recreated next time +/** Save enough information about this page that it can be recreated next time * the user starts gnucash. - * @param page The page to save. + * @param plugin_page The page to save. * @param key_file A pointer to the GKeyFile data structure where the * page information should be written. * @param group_name The group name to use when saving data. diff --git a/src/libqof/qof/qofid.h b/src/libqof/qof/qofid.h index 1e91e3df4c..069dd8c8d9 100644 --- a/src/libqof/qof/qofid.h +++ b/src/libqof/qof/qofid.h @@ -135,13 +135,14 @@ print error message if its bad */ */ -/** Is QOF operating in "alternate" dirty mode. In normal mode, - * whenever an instance is dirtied, the collection (and therefore the - * book) is immediately marked as dirty. In alternate mode, the - * collection is only marked dirty when a dirty instance is - * committed. If a dirty instance is freed instead of committed, the - * dirty state of collection (and therefore the book) is never - * changed. */ +/** Is QOF operating in "alternate" dirty mode? + * + * In normal mode, whenever an instance is dirtied, the collection + * (and therefore the book) is immediately marked as dirty. In + * alternate mode, the collection is only marked dirty when a dirty + * instance is committed. If a dirty instance is freed instead of + * committed, the dirty state of collection (and therefore the book) + * is never changed. */ gboolean qof_get_alt_dirty_mode (void); /** Set QOF into "alternate" dirty mode. In normal mode, whenever an diff --git a/src/register/register-core/cellblock.h b/src/register/register-core/cellblock.h index 3cdc3ac417..345d88a4f2 100644 --- a/src/register/register-core/cellblock.h +++ b/src/register/register-core/cellblock.h @@ -71,8 +71,8 @@ void gnc_cellblock_set_cell (CellBlock *cellblock, BasicCell * gnc_cellblock_get_cell (CellBlock *cellblock, int row, int col); -/** Searches by name for a particular cell in a CellBlock. Parameters @row - * and/or @col may be @c NULL. +/** Searches by name for a particular cell in a CellBlock. Parameters @c row + * and/or @c col may be @c NULL. * * @param cellblock a ::CellBlock to search * diff --git a/src/report/report-gnome/gnc-plugin-page-report.c b/src/report/report-gnome/gnc-plugin-page-report.c index b8e7a9889b..3528e1f1fe 100644 --- a/src/report/report-gnome/gnc-plugin-page-report.c +++ b/src/report/report-gnome/gnc-plugin-page-report.c @@ -704,7 +704,7 @@ gnc_plugin_page_report_destroy_widget(GncPluginPage *plugin_page) /** Save enough information about this report page that it can be * recreated next time the user starts gnucash. * - * @param page The page to save. + * @param plugin_page The page to save. * * @param key_file A pointer to the GKeyFile data structure where the * page information should be written.