mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
removing double semicolons at the end of lines
This commit is contained in:
parent
65c8357f53
commit
893383ce9b
@ -111,7 +111,7 @@ gnc_search_reconciled_class_init (GNCSearchReconciledClass *klass)
|
||||
static void
|
||||
gnc_search_reconciled_init (GNCSearchReconciled *o)
|
||||
{
|
||||
o->how = QOF_CHAR_MATCH_ANY;;
|
||||
o->how = QOF_CHAR_MATCH_ANY;
|
||||
o->value = CLEARED_NO;
|
||||
}
|
||||
|
||||
|
@ -3455,7 +3455,7 @@ gnc_option_set_ui_value_number_range (GNCOption *option, gboolean use_default,
|
||||
GtkWidget *widget, SCM value)
|
||||
{
|
||||
GtkSpinButton *spinner;
|
||||
gdouble d_value;;
|
||||
gdouble d_value;
|
||||
|
||||
spinner = GTK_SPIN_BUTTON(widget);
|
||||
|
||||
|
@ -481,7 +481,7 @@ tax_table_window_refresh (TaxTableWindow *ttw)
|
||||
gtk_tree_path_free(path);
|
||||
}
|
||||
}
|
||||
;;
|
||||
|
||||
tax_table_entries_refresh (ttw);
|
||||
/* select_row() above will refresh the entries window */
|
||||
}
|
||||
|
@ -884,7 +884,7 @@ gnc_dense_cal_draw(GtkWidget *widget, cairo_t *cr, gpointer user_data)
|
||||
|
||||
dcal = GNC_DENSE_CAL(user_data);
|
||||
|
||||
cairo_save (cr);;
|
||||
cairo_save (cr);
|
||||
cairo_set_source_surface (cr, dcal->surface, 0, 0);
|
||||
cairo_paint (cr);
|
||||
cairo_restore (cr);
|
||||
|
@ -485,7 +485,7 @@ gnc_plugin_page_sx_list_create_widget (GncPluginPage *plugin_page)
|
||||
|
||||
/* Add vbox and label */
|
||||
vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
|
||||
gtk_box_set_homogeneous (GTK_BOX (vbox), FALSE);;
|
||||
gtk_box_set_homogeneous (GTK_BOX (vbox), FALSE);
|
||||
gtk_paned_pack2( GTK_PANED(widget), vbox, TRUE, FALSE);
|
||||
|
||||
label = gtk_label_new(NULL);
|
||||
|
@ -258,7 +258,7 @@ save_budget_amounts (GncSqlBackend* sql_be, GncBudget* budget)
|
||||
GList* node;
|
||||
budget_amount_info_t info;
|
||||
guint num_periods;
|
||||
gboolean is_ok = TRUE;;
|
||||
gboolean is_ok = TRUE;
|
||||
|
||||
g_return_val_if_fail (sql_be != NULL, FALSE);
|
||||
g_return_val_if_fail (budget != NULL, FALSE);
|
||||
|
@ -715,7 +715,7 @@ GncSqlTransBackend::load_all (GncSqlBackend* sql_be)
|
||||
{
|
||||
g_return_if_fail (sql_be != NULL);
|
||||
|
||||
auto root = gnc_book_get_root_account (sql_be->book());;
|
||||
auto root = gnc_book_get_root_account (sql_be->book());
|
||||
gnc_account_foreach_descendant(root, (AccountCb)xaccAccountBeginEdit,
|
||||
nullptr);
|
||||
query_transactions (sql_be, "");
|
||||
|
@ -402,7 +402,7 @@ gboolean
|
||||
gnc_write_example_account (GncExampleAccount* gea, const gchar* filename)
|
||||
{
|
||||
FILE* out;
|
||||
sixtp_gdv2 data = { 0 };;
|
||||
sixtp_gdv2 data = { 0 };
|
||||
|
||||
out = g_fopen (filename, "w");
|
||||
if (out == NULL)
|
||||
|
@ -913,7 +913,7 @@ kvp_frame_fail_handler (gpointer data_for_children,
|
||||
static void
|
||||
kvp_frame_result_cleanup (sixtp_child_result* cr)
|
||||
{
|
||||
auto f = static_cast<KvpFrame*> (cr->data);;
|
||||
auto f = static_cast<KvpFrame*> (cr->data);
|
||||
if (f) delete f;
|
||||
}
|
||||
|
||||
|
@ -2370,7 +2370,7 @@ xaccTransGetDate (const Transaction *trans)
|
||||
time64
|
||||
xaccTransGetDateEntered (const Transaction *trans)
|
||||
{
|
||||
return trans ? trans->date_entered : 0;;
|
||||
return trans ? trans->date_entered : 0;
|
||||
}
|
||||
/*################## Added for Reg2 #################*/
|
||||
|
||||
|
@ -314,7 +314,7 @@ using std::to_string;
|
||||
#include <istream>
|
||||
#include <cstdlib>
|
||||
|
||||
using boost::posix_time::ptime;;
|
||||
using boost::posix_time::ptime;
|
||||
//To enable using Transition with different meanings for IANA files
|
||||
//and for DSTRules.
|
||||
namespace IANAParser
|
||||
|
@ -301,7 +301,7 @@ test_gnc_uri_is_file_protocol()
|
||||
gboolean tis_file_protocol;
|
||||
|
||||
tis_file_protocol = gnc_uri_is_file_protocol( strs[i].protocol );
|
||||
g_assert_true ( tis_file_protocol == strs[i].is_file_protocol );;
|
||||
g_assert_true ( tis_file_protocol == strs[i].is_file_protocol );
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user