White space removal and change tabs to spaces in qofbook.cpp/h

This commit is contained in:
Robert Fewell 2018-08-25 11:08:32 +01:00
parent fd750a22eb
commit 2dcb316280
2 changed files with 59 additions and 58 deletions

View File

@ -148,15 +148,16 @@ struct _QofBook
* from the session. Better solutions welcome ... */
QofBackend *backend;
/* A cached value of the OPTION_NAME_NUM_FIELD_SOURCE option value because
* it is queried quite a lot, so we want to avoid a KVP lookup on each query
*/
/* A cached value of the OPTION_NAME_NUM_FIELD_SOURCE option value
* because it is queried quite a lot, so we want to avoid a KVP
* lookup on each query */
gboolean cached_num_field_source;
/* Whether the above cached value is valid. */
gboolean cached_num_field_source_isvalid;
/* A cahed value of the "autoreadonly-days" option value because it is
* queried quite a lot, so we want to avoid a KVP lookup on each query */
/* A cahed value of the "autoreadonly-days" option value because
* it is queried quite a lot, so we want to avoid a KVP lookup on
* each query */
gint cached_num_days_autoreadonly;
/* Whether the above cached value is valid. */
gboolean cached_num_days_autoreadonly_isvalid;