File tree 2 files changed +2
-4
lines changed
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 4
4
* spacing possibilities, trying to use context to improve the
5
5
* word spacing
6
6
* Author: Phil Cheatle
7
- * Created: Thu Oct 21 11:38:43 BST 1993
8
7
*
9
8
* (C) Copyright 1993, Hewlett-Packard Ltd.
10
9
** Licensed under the Apache License, Version 2.0 (the "License");
@@ -445,7 +444,7 @@ void transform_to_next_perm(WERD_RES_LIST &words) {
445
444
*copy_word = *(prev_word->word );
446
445
// deep copy
447
446
combo = new WERD_RES (copy_word);
448
- combo->combination = TRUE ;
447
+ combo->combination = true ;
449
448
combo->x_height = prev_word->x_height ;
450
449
prev_word->part_of_combo = true ;
451
450
prev_word_it.add_before_then_move (combo);
Original file line number Diff line number Diff line change 7
7
* Holds data used during word recognition.
8
8
* Holds information about alternative spacing paths.
9
9
* Author: Phil Cheatle
10
- * Created: Tue Sep 22 08:42:49 BST 1992
11
10
*
12
11
* (C) Copyright 1992, Hewlett-Packard Ltd.
13
12
** Licensed under the Apache License, Version 2.0 (the "License");
@@ -177,7 +176,7 @@ ROW_RES::ROW_RES(bool merge_similar_words, ROW *the_row) {
177
176
*copy_word = *(word_it.data ()); // deep copy
178
177
combo = new WERD_RES (copy_word);
179
178
combo->x_height = the_row->x_height ();
180
- combo->combination = TRUE ;
179
+ combo->combination = true ;
181
180
word_res_it.add_to_end (combo);
182
181
}
183
182
word_res->part_of_combo = TRUE ;
You can’t perform that action at this time.
0 commit comments