[glom] Document: Minor const improvements.
- From: Murray Cumming <murrayc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glom] Document: Minor const improvements.
- Date: Mon, 28 Oct 2019 18:39:46 +0000 (UTC)
commit db250e4566c7a7ed7d6bc07920371a848e802cf8
Author: Murray Cumming <murrayc murrayc com>
Date: Tue Jun 20 20:40:18 2017 +0200
Document: Minor const improvements.
glom/libglom/document/document.cc | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/glom/libglom/document/document.cc b/glom/libglom/document/document.cc
index 5b2b970a..1b4b5a81 100644
--- a/glom/libglom/document/document.cc
+++ b/glom/libglom/document/document.cc
@@ -669,7 +669,7 @@ void Document::remove_relationship(const std::shared_ptr<const Relationship>& re
}
//Remove relationship from any layouts:
- auto layouts = info->m_layouts;
+ const auto& layouts = info->m_layouts;
auto iterLayouts = layouts.begin();
while(iterLayouts != layouts.end())
{
@@ -935,7 +935,7 @@ void Document::change_field_name(const Glib::ustring& table_name, const Glib::us
if(info)
{
//Fields:
- auto& vecFields = info->m_fields;
+ const auto& vecFields = info->m_fields;
auto iterFind = find_if_same_name(vecFields, strFieldNameOld);
if(iterFind != vecFields.end()) //If it was found:
{
@@ -1518,7 +1518,7 @@ Document::type_list_layout_groups Document::get_data_layout_groups(const Glib::u
const auto info = get_table_info(parent_table_name);
if(info)
{
- const auto layouts = info->m_layouts;
+ const auto& layouts = info->m_layouts;
//Look for the layout with this name:
auto iter = find_if_layout(layouts, layout_name, layout_platform);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]