~bibledit/bibledit/ubuntu-cloud

« back to all changes in this revision

Viewing changes to search/originals.cpp

  • Committer: Teus Benschop
  • Date: 2022-08-30 18:42:32 UTC
  • Revision ID: teusjannette@gmail.com-20220830184232-a5bf5fkj14cqdx01
new upstream version

Show diffs side-by-side

added added

removed removed

Lines of Context:
105
105
    // Include items if there are no more search hits than 30% of the total number of verses in the Hebrew or Greek.
106
106
    size_t maxcount = 0;
107
107
    if (type == "ot") {
108
 
      maxcount = round (0.3 * 23145);
 
108
      maxcount = static_cast<size_t> (round (0.3 * 23145));
109
109
    }
110
110
    if (type == "nt") {
111
 
      maxcount = round (0.3 * 7957);
 
111
      maxcount = static_cast<size_t> (round (0.3 * 7957));
112
112
    }
113
113
    
114
114
    
150
150
      v_passages.push_back (passage);
151
151
      counts.push_back (count);
152
152
    }
153
 
    quick_sort (counts, v_passages, 0, static_cast<int>(counts.size()));
 
153
    quick_sort (counts, v_passages, 0, static_cast<unsigned> (counts.size()));
154
154
    reverse (v_passages.begin(), v_passages.end());
155
155
 
156
156
    
169
169
    
170
170
    // Get the and passage for this identifier.
171
171
    Passage passage = filter_integer_to_passage (id);
172
 
    int book = passage.book;
173
 
    int chapter = passage.chapter;
174
 
    string verse = passage.verse;
 
172
    int book = passage.m_book;
 
173
    int chapter = passage.m_chapter;
 
174
    string verse = passage.m_verse;
175
175
    
176
176
    // Get the plain text.
177
177
    string text = search_logic_get_bible_verse_text (bible, book, chapter, convert_to_int (verse));