Skip to content

Commit

Permalink
fix key texts
Browse files Browse the repository at this point in the history
  • Loading branch information
kk-mats committed Jun 19, 2019
1 parent 54fbc83 commit a552707
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions clone_format/ccfinderx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ std::shared_ptr<detection_result> ccfinderx::read(const QString &path, detection

ccfinderx::reader::reader(QFile &file) noexcept
: is_(&file)
{
}
{}

std::shared_ptr<detection_result> ccfinderx::reader::read(detection_results &results) noexcept
{
Expand Down
6 changes: 3 additions & 3 deletions layer/heatmap_layer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ std::vector<std::pair<QString, QString>> heatmap_layer::clone_pair_size::details
{
return
{
{"#Clone Pair", QString::number(this->sum_)},
{"Min #Clone Pair", QString::number(this->min_)},
{"Max #Clone Pair", QString::number(this->max_)}
{"# Clone Pair", QString::number(this->sum_)},
{"Min # Clone Pair", QString::number(this->min_)},
{"Max # Clone Pair", QString::number(this->max_)}
};
}

Expand Down

0 comments on commit a552707

Please sign in to comment.