From 8daac6b8a712e7c2b1570fe17a8f36397134020c Mon Sep 17 00:00:00 2001 From: vng Date: Fri, 25 Jul 2014 18:11:44 +0300 Subject: [PATCH] Fixed params initialization. --- search/result.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/search/result.cpp b/search/result.cpp index e50ebf65d6..9b9db3d1b4 100644 --- a/search/result.cpp +++ b/search/result.cpp @@ -33,9 +33,9 @@ Result::Result(string const & str, string const & suggest) } Result::Result(Result const & res, string const & suggest) - : m_center(res.m_center), m_str(res.m_str), m_region(res.m_region), - m_featureType(res.m_featureType), m_suggestionStr(suggest), - m_hightlightRanges(res.m_hightlightRanges) + : m_id(res.m_id), m_center(res.m_center), m_str(res.m_str), + m_region(res.m_region), m_type(res.m_type), m_featureType(res.m_featureType), + m_suggestionStr(suggest), m_hightlightRanges(res.m_hightlightRanges) { }