Changeset 6141 for trunk/EDIT4/ED4_main.cxx
- Timestamp:
- 14/08/09 16:29:27 (3 years ago)
- Files:
-
- 1 modified
-
trunk/EDIT4/ED4_main.cxx (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/EDIT4/ED4_main.cxx
r6106 r6141 56 56 GBS_strstruct *not_found_message; 57 57 long max_seq_terminal_length; // global maximum of sequence terminal length 58 ED4_EDITMODI awar_edit_mod us;58 ED4_EDITMODI awar_edit_mode; 59 59 long awar_edit_direction; 60 60 bool move_cursor; // only needed for editing in consensus … … 121 121 } 122 122 123 static void child s(ED4_manager *manager)123 static void children(ED4_manager *manager) 124 124 { 125 125 int i; … … 148 148 printf("[%2i] %-30s", level, id(base)); 149 149 if (base->is_manager()) { 150 child s(base->to_manager());150 children(base->to_manager()); 151 151 } 152 152 printf("\n"); … … 380 380 create_galigner_variables(root, AW_ROOT_DEFAULT); 381 381 382 awar_edit_mod us= AD_ALIGN;382 awar_edit_mode = AD_ALIGN; 383 383 384 384 int def_sec_level = 0; … … 391 391 root->awar_int( AWAR_EDIT_SECURITY_LEVEL_CHANGE, def_sec_level,AW_ROOT_DEFAULT)->add_callback(ed4_changesecurity,(AW_CL) def_sec_level); 392 392 393 // root->awar_int( AWAR_EDIT_MODE, (long) awar_edit_mod us )->add_target_var((long *) &awar_edit_modus)->add_callback(ed4_changesecurity,(AW_CL) 0);393 // root->awar_int( AWAR_EDIT_MODE, (long) awar_edit_mode )->add_target_var((long *) &awar_edit_mode)->add_callback(ed4_changesecurity,(AW_CL) 0); 394 394 395 395 root->awar_int( AWAR_EDIT_MODE, 0)->add_callback(ed4_change_edit_mode, (AW_CL)0); … … 528 528 "\n" 529 529 "Options:\n" 530 "-c config loads configuration 'config' (d afault: 'default_configuration')\n"530 "-c config loads configuration 'config' (default: 'default_configuration')\n" 531 531 "\n" 532 532 );
