Obey GNUcash coding style

Corrected brace position.
This commit is contained in:
Ueli Niederer
2017-03-30 20:53:45 +02:00
committed by John Ralls
parent 448d97553f
commit 768df3b709

View File

@@ -319,7 +319,7 @@ join_ab_strings_cb(const gchar *str, gpointer user_data)
if (!str || !*str) if (!str || !*str)
return NULL; return NULL;
tmp = g_strdup(str); tmp = g_strdup(str);
g_strstrip(tmp); g_strstrip(tmp);
gnc_utf8_strip_invalid(tmp); gnc_utf8_strip_invalid(tmp);
@@ -369,7 +369,8 @@ gnc_ab_get_purpose(const AB_TRANSACTION *ab_trans)
g_return_val_if_fail(ab_trans, g_strdup("")); g_return_val_if_fail(ab_trans, g_strdup(""));
if (gnc_prefs_get_bool(GNC_PREFS_GROUP_AQBANKING, GNC_PREF_USE_TRANSACTION_TXT)) { if (gnc_prefs_get_bool(GNC_PREFS_GROUP_AQBANKING, GNC_PREF_USE_TRANSACTION_TXT))
{
/* According to AqBanking, some of the non-swift lines have a special /* According to AqBanking, some of the non-swift lines have a special
* meaning. Some banks place valuable text into the transaction text, * meaning. Some banks place valuable text into the transaction text,
* hence we put this text in front of the purpose. */ * hence we put this text in front of the purpose. */