Wireshark-commits: [Wireshark-commits] master bbef2a8: Better format for the recent file's column.w

From: Wireshark code review <code-review-do-not-reply@xxxxxxxxxxxxx>
Date: Thu, 20 Dec 2018 10:09:43 +0000
URL: https://code.wireshark.org/review/gitweb?p=wireshark.git;a=commit;h=bbef2a87ffc7252fe793f123460569d47b0debaf
Submitter: "Anders Broman <a.broman58@xxxxxxxxx>"
Changed: branch: master
Repository: wireshark

Commits:

bbef2a8 by Jim Young (jyoung@xxxxxxx):

    Better format for the recent file's column.width preference
    
    Write the "Packet list column pixel widths" preference value in a
    format that is both more human friendly and is more consistent with
    other similarly formatted multivalued preference values.
    
    From this ...
    
    > # Packet list column pixel widths.
    > # Each pair of strings consists of a column format and its pixel width.
    > column.width: %m, 75, %t, 72, %s, 113, %d, 113, %p, 92, %L, 82, %i, 475
    
    To this ...
    
    > # Packet list column pixel widths.
    > # Each pair of strings consists of a column format and its pixel width.
    > column.width:
    >         %m, 75,
    >         %t, 72,
    >         %s, 113,
    >         %d, 113,
    >         %p, 92,
    >         %L, 82,
    >         %i, 475
    
    The preference reading code already accepts this new format.
    
    Change-Id: Id731ec81e8ebf87ecfb268e48dfeaa96d8e00668
    Reviewed-on: https://code.wireshark.org/review/31140
    Petri-Dish: Jim Young <jim.young.ws@xxxxxxxxx>
    Tested-by: Petri Dish Buildbot
    Reviewed-by: Anders Broman <a.broman58@xxxxxxxxx>
    

Actions performed:

    from  eb3066d   tibia: Use wmem for decrypted buffer
     add  bbef2a8   Better format for the recent file's column.width preference


Summary of changes:
 ui/qt/packet_list.cpp | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)