IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Dec 27, 2005, 8:38:11 AM (21 years ago)
Author:
eugene
Message:

updating to libkapa

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/kii/setup/SetUpWindow.c

    r5700 r5849  
    77  int N;
    88  Icon icon;
     9  char *name;
    910
    1011  icon.width = icon_width;
     
    2122  SetNormalHints (graphic);
    2223  SetWMHints (graphic, &icon);
    23   NameWindow (graphic, "Ki'i");
     24
     25  if (NAME_WINDOW == NULL) {
     26    NameWindow (graphic, "Ki'i");
     27  } else {
     28    ALLOCATE (name, char, strlen(NAME_WINDOW) + 10);
     29    sprintf (name, "Ki'i %s", NAME_WINDOW);
     30    NameWindow (graphic, name);
     31    free (name);
     32  }
    2433
    2534  if (MAP_WINDOW) MapWindow (graphic);
    2635}
    27 
    28 
    29 
Note: See TracChangeset for help on using the changeset viewer.