Show
Ignore:
Timestamp:
11/01/09 12:04:05 (3 years ago)
Author:
Erwan Velu <erwan.velu@…>
Children:
dff89818c3b64eff6f31f04dcef240c5a9daff4c
Parents:
57689f219c5155e186ced1c9f5f972d5d0b340ed
git-committer:
Erwan Velu <erwan.velu@free.fr> / 2009-11-01T13:04:05Z+0100
Message:

Revert "hdt: Adding core developper role"

This reverts commit 57689f219c5155e186ced1c9f5f972d5d0b340ed.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • com32/hdt/hdt-menu-about.c

    r57689f ra7f6dd  
    4040  set_menu_pos(SUBMENU_Y, SUBMENU_X); 
    4141 
    42   snprintf(buffer, sizeof buffer, "Product        : %s", PRODUCT_NAME); 
     42  snprintf(buffer, sizeof buffer, "Product     : %s", PRODUCT_NAME); 
    4343  snprintf(statbuffer, sizeof statbuffer, "Product : %s", PRODUCT_NAME); 
    4444  add_item(buffer, statbuffer, OPT_INACTIVE, NULL, 0); 
    4545  menu->items_count++; 
    4646 
    47   snprintf(buffer, sizeof buffer, "Version        : %s", VERSION); 
     47  snprintf(buffer, sizeof buffer, "Version     : %s", VERSION); 
    4848  snprintf(statbuffer, sizeof statbuffer, "Version : %s", VERSION); 
    4949  add_item(buffer, statbuffer, OPT_INACTIVE, NULL, 0); 
    5050  menu->items_count++; 
    5151 
    52   snprintf(buffer, sizeof buffer, "Project Leader : %s", AUTHOR); 
    53   snprintf(statbuffer, sizeof statbuffer, "Project Leader  : %s", AUTHOR); 
     52  snprintf(buffer, sizeof buffer, "Author      : %s", AUTHOR); 
     53  snprintf(statbuffer, sizeof statbuffer, "Author  : %s", AUTHOR); 
    5454  add_item(buffer, statbuffer, OPT_INACTIVE, NULL, 0); 
    5555  menu->items_count++; 
    5656 
    57   snprintf(buffer, sizeof buffer, "Contact        : %s", CONTACT); 
     57  snprintf(buffer, sizeof buffer, "Contact     : %s", CONTACT); 
    5858  snprintf(statbuffer, sizeof statbuffer, "Contact : %s", CONTACT); 
    59   add_item(buffer, statbuffer, OPT_INACTIVE, NULL, 0); 
    60   menu->items_count++; 
    61  
    62   snprintf(buffer, sizeof buffer, "Core Developer : %s", CORE_DEVELOPER); 
    63   snprintf(statbuffer, sizeof statbuffer, "Core Developer  : %s", CORE_DEVELOPER); 
    6459  add_item(buffer, statbuffer, OPT_INACTIVE, NULL, 0); 
    6560  menu->items_count++; 
     
    6762  char *contributors[NB_CONTRIBUTORS] = CONTRIBUTORS; 
    6863  for (int c=0; c<NB_CONTRIBUTORS; c++) { 
    69    snprintf(buffer, sizeof buffer, "Contributor    : %s", contributors[c]); 
     64   snprintf(buffer, sizeof buffer, "Contributor : %s", contributors[c]); 
    7065   snprintf(statbuffer, sizeof statbuffer, "Contributor : %s", contributors[c]); 
    7166   add_item(buffer, statbuffer, OPT_INACTIVE, NULL, 0);