Changeset 86 for trunk/gui/printer


Ignore:
Timestamp:
Jul 19, 2019, 1:44:57 AM (6 years ago)
Author:
Alex Taylor
Message:

Make sure temp and log directories do not have trailing backslashes

Location:
trunk/gui/printer/cupswiz
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/gui/printer/cupswiz/cupswiz.VRP

    r84 r86  
    77VRXWindow: __VREMainWindow,1,578,2746,5770,9106
    88VRXWindow: __VRESectionListWindow,1,723,11900,4529,3891
    9 VRXWindow: __VREToolsWindow,1,1650,9973,5474,1665
     9VRXWindow: __VREToolsWindow,1,1650,9973,5477,1667
    1010VRXWindow: __VREWindListWindow,1,5191,11900,2650,3891
    1111UserFile: 1
  • trunk/gui/printer/cupswiz/cupswiz.VRX

    r84 r86  
    13591359    IF globals.!tmpdir == '' THEN
    13601360        globals.!tmpdir = globals.!mydir
     1361    globals.!tmpdir = STRIP( globals.!tmpdir, 'T', '\')
    13611362    globals.!logdir = VALUE('LOGFILES',,'OS2ENVIRONMENT')
    13621363    IF globals.!logdir == '' THEN
    13631364        globals.!logdir = globals.!mydir
     1365    globals.!logdir = STRIP( globals.!logdir, 'T', '\')
    13641366
    13651367    globals.!log1 = globals.!logdir'\cupswiz.l1'
     
    20142016    CALL NLSSetText 'SW_ABOUT',  'Caption', 10                                          /* 10: Product Information */
    20152017    CALL NLSSetText 'DT_ABOUT1', 'Caption', 11                                          /* 11: eCups Printer Install Utility */
    2016     CALL NLSSetText 'DT_ABOUT2', 'Caption', 12, '1.18'                                  /* 12: Version %1 */
     2018    CALL NLSSetText 'DT_ABOUT2', 'Caption', 12, '1.19'                                  /* 12: Version %1 */
    20172019    CALL NLSSetText 'DT_ABOUT3', 'Caption', 13, '2010-2019'                             /* 13: (C) %1 Alex Taylor */
    20182020    CALL NLSSetText 'PB_ABOUT',  'Caption', 2                                           /* 10: Product Information */
Note: See TracChangeset for help on using the changeset viewer.