Skip to content
This repository has been archived by the owner on Feb 13, 2024. It is now read-only.

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
IndrekV committed Jan 22, 2018
1 parent 43ca6ca commit 81c8c81
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/context.cc
Original file line number Diff line number Diff line change
Expand Up @@ -686,8 +686,8 @@ void Context::updateUI(const UIElements &what) {
if (user_->CollapseEntries()) {
std::stringstream ss;
ss << date_header << te->Description()
<< te->PID() << te->TID()
<< te->Billable() << te->Tags();
<< te->PID() << te->TID()
<< te->Billable() << te->Tags();
std::string group_name = ss.str();

group_header_id[group_name] = i;
Expand Down
2 changes: 1 addition & 1 deletion src/user.cc
Original file line number Diff line number Diff line change
Expand Up @@ -916,7 +916,7 @@ void User::loadUserTimeEntryFromJSON(
bool User::LoadUserPreferencesFromJSON(
Json::Value data) {
if (data.isMember("CollapseTimeEntries")
&& data["CollapseTimeEntries"].asBool() != CollapseEntries()) {
&& data["CollapseTimeEntries"].asBool() != CollapseEntries()) {
SetCollapseEntries(data["CollapseTimeEntries"].asBool());
return true;
}
Expand Down

0 comments on commit 81c8c81

Please sign in to comment.