mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Merge John Ralls's 'bug798958' into stable.
This commit is contained in:
commit
5b08f8f35c
@ -527,7 +527,7 @@ gnc_relative_date_to_time64(RelativeDatePeriod period)
|
||||
{
|
||||
auto delta = (now.tm_mon >= acct_per.tm_mon ?
|
||||
( now.tm_mon - acct_per.tm_mon) % 3 :
|
||||
3 - ((acct_per.tm_mon - now.tm_mon) % 3));
|
||||
(3 - acct_per.tm_mon - now.tm_mon) % 3);
|
||||
now.tm_mon = now.tm_mon - delta;
|
||||
}
|
||||
[[fallthrough]];
|
||||
|
Loading…
Reference in New Issue
Block a user