diff options
author | Saturneric <[email protected]> | 2022-09-03 12:20:31 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2022-09-03 12:20:31 +0000 |
commit | 8204039b7e3802b7cf0d2a0e5496bc92f12c583d (patch) | |
tree | f71f43287624048dd46ba66aac53bcb482ce41bf /src/ui/widgets/KeyList.cpp | |
parent | fix(ui): fix user feedback issues. (diff) | |
download | GpgFrontend-8204039b7e3802b7cf0d2a0e5496bc92f12c583d.tar.gz GpgFrontend-8204039b7e3802b7cf0d2a0e5496bc92f12c583d.zip |
fix(core, ui): delete some unnecessary logs
Diffstat (limited to '')
-rw-r--r-- | src/ui/widgets/KeyList.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/ui/widgets/KeyList.cpp b/src/ui/widgets/KeyList.cpp index ad76467e..44559b8e 100644 --- a/src/ui/widgets/KeyList.cpp +++ b/src/ui/widgets/KeyList.cpp @@ -500,7 +500,6 @@ void KeyList::check_all() { } KeyIdArgsListPtr& KeyTable::GetChecked() { - LOG(INFO) << "called"; if (checked_key_ids_ == nullptr) checked_key_ids_ = std::make_unique<KeyIdArgsList>(); auto& ret = checked_key_ids_; @@ -521,7 +520,6 @@ void KeyTable::SetChecked(KeyIdArgsListPtr key_ids) { } void KeyTable::Refresh(KeyLinkListPtr m_keys) { - LOG(INFO) << "called"; auto& checked_key_list = GetChecked(); // while filling the table, sort enabled causes errors @@ -536,7 +534,6 @@ void KeyTable::Refresh(KeyLinkListPtr m_keys) { else keys = std::move(m_keys); - LOG(INFO) << "keys size: " << keys->size(); auto it = keys->begin(); int row_count = 0; @@ -557,7 +554,6 @@ void KeyTable::Refresh(KeyLinkListPtr m_keys) { it++; } - LOG(INFO) << "row_count: " << row_count; key_list_->setRowCount(row_count); int row_index = 0; @@ -649,8 +645,6 @@ void KeyTable::Refresh(KeyLinkListPtr m_keys) { } } } - - LOG(INFO) << "End"; } void KeyTable::UncheckALL() const { |