aboutsummaryrefslogtreecommitdiffstats
path: root/ui
AgeCommit message (Collapse)AuthorFilesLines
2019-08-30Qt: ProtoTree combine menusRoland Knall2-162/+94
The menu for a prototree when opened from a packetdialog was different than the one opened underneath packetlist. Those two are now the same. Change-Id: I57572287daa5a3b1de1f5bc8e95b382d5869af6e Reviewed-on: https://code.wireshark.org/review/34395 Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
2019-08-30Qt: Add macro for g_list_next for C++Roland Knall28-185/+196
Using a simple (type *) cast on g_list_next results in a warning with modern compilers "old-style cast" Adding a warning for g_list_next and data access to avoid the warning A good overview why reinterpret_cast has been used can be found here: https://stackoverflow.com/questions/332030/when-should-static-cast-dynamic-cast-const-cast-and-reinterpret-cast-be-used It is a 1:1 replacement in this case, but does not use any of the new cast styles and therefore should be used with caution. Change-Id: I989f237afc39aaf40133a788b1c0bbd7a51bf974 Reviewed-on: https://code.wireshark.org/review/34284 Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
2019-08-29Qt: Extend filterbutton context menuRoland Knall5-65/+43
The filterbutton context menu allows for appending the filter button expression to an already existing display filter and copying the filterbutton filter expression to the clipboard Bug: 15980 Change-Id: I7b24007e597b9a9800729339926378d0ff264c73 Reviewed-on: https://code.wireshark.org/review/34394 Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
2019-08-29Qt: Apply Invert/Enable/Disable only to selected listRoland Knall5-88/+120
Also, put the search field on top, as this is the default for search fields and apply the change of enable/disable and invert-all only to the selected items, instead of all items. Bug: 16013 Change-Id: If4ef1c5ce63eef6fa72db679cdcbf52dcb0e8fb6 Reviewed-on: https://code.wireshark.org/review/34393 Reviewed-by: Roland Knall <rknall@gmail.com>
2019-08-29Qt: Move Apply/Prepare to general QMenu handlerRoland Knall8-233/+49
Also clarify the method by which the filter can be selected. From the main menu only selected filters from a ProtoTree can be selected, therefore the code for PacketList handling has been removed. Change-Id: I5e5827d763ab3b25db14a384581f283238f96d28 Reviewed-on: https://code.wireshark.org/review/34384 Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Gerald Combs <gerald@wireshark.org> Reviewed-by: Roland Knall <rknall@gmail.com>
2019-08-27Add tooltip for clearing display filterMoshe Kaplan2-1/+5
Change-Id: I11f8c7ba00ffdc3028c85b1f0957bd6f95092dce Reviewed-on: https://code.wireshark.org/review/34357 Petri-Dish: Guy Harris <guy@alum.mit.edu> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2019-08-26Qt: Create Apply/Prepare in PacketlistRoland Knall2-20/+32
Create the menu for apply/prepare inside Packetlist. At the same time disabled the "..." methods if no filter has been set yet Move the action list to FilterAction as well Change-Id: Ia18a4021cc95562702ff516a24fb029063096f94 Reviewed-on: https://code.wireshark.org/review/34377 Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
2019-08-26Qt: Add Apply/Prepare to Packet DialogRoland Knall1-1/+20
Add the possibility to apply/prepare a field entry to the packet dialog. This works also if the corresponding source file had already been closed. Bug: 3537 Change-Id: I448ad6d5cb37f2cbb2c2f649512b1f3e5acde2de Reviewed-on: https://code.wireshark.org/review/34372 Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
2019-08-26Qt: Remove unnecessary code for context menusRoland Knall5-68/+59
This code is no longer required, as context menus should be bound to local events. As for "Reloading LUA plugins" - the keyboard shortcut would be able to trigger while the menu is open, except Qt explicitely prevents that Change-Id: Id18a3a17d62bae1ff547a6ef96772e12a2535219 Reviewed-on: https://code.wireshark.org/review/34371 Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
2019-08-26Qt: Make Apply/Prepare filter independentRoland Knall5-22/+84
The context menu should only use information readily available at the point of creation. Copying actions from the mainwindow introduces a bunch of synchronization and consistency issues. This is a first step to move away from a centralized approach of managing actions, towards a distributed approach. As a side effect, this also solves the old issue of having the apply items greyed out in context menu Bug: 16001 Bug: 15323 Change-Id: I10c6df11cbab0a89386f5bf1d27759103df2a012 Reviewed-on: https://code.wireshark.org/review/34370 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
2019-08-26Qt: Fix memory leak in ProfileModel constructorTomasz Moń1-0/+1
Change-Id: I4a0ccaebe7ab821a22b86ce1155328fd714caf50 Reviewed-on: https://code.wireshark.org/review/34376 Reviewed-by: Roland Knall <rknall@gmail.com> Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Michael Mann <mmann78@netscape.net>
2019-08-26Qt: Fix copy from default profileRoland Knall1-1/+1
The default profile was available to be selected, even if it was the active profile. Bug: 16021 Change-Id: If08a563f243f18f32e17cb2169180ec0b1274a9a Reviewed-on: https://code.wireshark.org/review/34366 Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
2019-08-26Qt (zip_helper): Fix Dead StoreAlexis La Goutte1-1/+2
Fix dead store (Dead assignement/Dead increment) Warning found by Clang Change-Id: Ib16fc6c0783adda8485056d5e20973cf078e7d7e Reviewed-on: https://code.wireshark.org/review/34321 Reviewed-by: Roland Knall <rknall@gmail.com> Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
2019-08-26Qt: Move CopyFrom from menu to buttonRoland Knall13-97/+126
Move the CopyFromProfile implementation from a menu to a button to ease integration in existing code Change-Id: I4fb4e952e89665eda99d162e891ac6d3516a6f02 Reviewed-on: https://code.wireshark.org/review/34266 Reviewed-by: Roland Knall <rknall@gmail.com> Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2019-08-25[Automatic update for 2019-08-25]Gerald Combs9-353/+266
Update manuf, services enterprise numbers, translations, and other items. Change-Id: I4ed4ada929881a78beefc34012a9898caa92d649 Reviewed-on: https://code.wireshark.org/review/34353 Reviewed-by: Gerald Combs <gerald@wireshark.org>
2019-08-20Qt: Allow deletion of personal system-profileRoland Knall1-1/+1
If a profile is being deleted, but a system profile with the same name exists, the dialog cannot be closed Change-Id: I2fbaa999617203816e21a8e4486abaf368b69919 Reviewed-on: https://code.wireshark.org/review/34331 Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
2019-08-20Qt: Fix null pointer dereferenceRoland Knall1-45/+17
Rework existing code to avoid unsafe localtime Change-Id: I266ae7e006c6aeed42af39fea07c888874d0f588 Reviewed-on: https://code.wireshark.org/review/34329 Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
2019-08-19Qt: Initialize PacketListHeader member variablesTomasz Moń1-1/+3
Coverity CID 1446258 Change-Id: Iffadb8be97dd6dbd75a97869cea54398eec16554 Reviewed-on: https://code.wireshark.org/review/34324 Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot Reviewed-by: Gerald Combs <gerald@wireshark.org>
2019-08-19Qt: Fix PacketListHeader dereferences before null checkTomasz Moń1-4/+19
Coverity CID 1446250, 14462554, 1446255, 1446256 Change-Id: I38ec9473dbee92a5bb3bc9635e2f6968db27b99e Reviewed-on: https://code.wireshark.org/review/34325 Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot Reviewed-by: Gerald Combs <gerald@wireshark.org>
2019-08-19Qt: Fix CredentialsModel::clear()Tomasz Moń1-7/+9
The last parameter to beginRemoveRows() is the last row index, not the number of rows. The QAbstractItemModel::beginRemoveRows() source code expliticly checks if the value is smaller than row count. Do not emit beginRemoveRows() if the model is empty as it does not make sense and it is impossible to pass the QAbstractItemModel assertions in such case. Emit endRemoveRows() when finished instead of endInsertRows(). Change-Id: I93be4820b1ea0fbb5c0f3cd28edca329b4017814 Reviewed-on: https://code.wireshark.org/review/34318 Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot Reviewed-by: Gerald Combs <gerald@wireshark.org>
2019-08-18[Automatic update for 2019-08-18]Gerald Combs10-287/+446
Update manuf, services enterprise numbers, translations, and other items. Change-Id: I085b9184725ceef499e1cfc71913c1f363ac246f Reviewed-on: https://code.wireshark.org/review/34315 Reviewed-by: Gerald Combs <gerald@wireshark.org>
2019-08-14Wiretap: Fix temporary filename memory corruptionTomasz Moń2-3/+3
The pointer returned by create_tempfile() must not be freed. As the wtap_dump_open_tempfile() callers are freeing the returned filename, duplicate the string so it can be freed. Bug: 15377 Change-Id: Ib0b23aaee748ef67600ef3f7d40610ebbbec721c Reviewed-on: https://code.wireshark.org/review/34272 Petri-Dish: Peter Wu <peter@lekensteyn.nl> Tested-by: Petri Dish Buildbot Reviewed-by: Peter Wu <peter@lekensteyn.nl>
2019-08-13Qt: Fix importProfilesFromDir() semanticsTomasz Moń1-2/+3
The default value for skippedCnt is Q_NULLPTR. Do not dereference skippedCnt unconditionally. Change-Id: Ice33a7f9034507f39f16406cc365f39f4e543da5 Reviewed-on: https://code.wireshark.org/review/34271 Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org> Reviewed-by: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
2019-08-13Qt: Remove unnecessary const_cast'sRoland Knall2-11/+11
Change-Id: I566cb963b919f6de91a809661856beadd1d4a14a Reviewed-on: https://code.wireshark.org/review/34264 Reviewed-by: Roland Knall <rknall@gmail.com> Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2019-08-13Qt: Import zips with illegal namesRoland Knall4-26/+81
If a profile import contains illegal path names inside the zip container, the illegal names are being filtered out and replaced with an underscore Change-Id: I4e1bc495156b8c1cd3f4dfca69604e880647f74e Reviewed-on: https://code.wireshark.org/review/34220 Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
2019-08-13Qt: Correctly identify the active profileRoland Knall1-8/+12
Correctly mark the active profile in the list and identify it by making it bold, even if it has been renamed Change-Id: I8c5c8215b924735f460c5bd0bb4d4c21632d494b Reviewed-on: https://code.wireshark.org/review/34211 Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Peter Wu <peter@lekensteyn.nl> Reviewed-by: Roland Knall <rknall@gmail.com>
2019-08-13Qt: Prevent loop in renames of profilesRoland Knall5-61/+233
This prevents the case, where there are two profiles, and one is renamed, after which the second one is renamed to the firsts original name. This could lead to undefined behavior in the underlying data structure. Fixes an issue as well, where deleting the identical named duplicate would delete the original one Bug: 15975 Change-Id: Ia7112779f2c2ef926c3ea915852b6d7b4497f777 Reviewed-on: https://code.wireshark.org/review/34189 Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
2019-08-13Qt: Fix translations for profilesRoland Knall1-6/+6
Translations where not applied correctly because of the ellipsis Change-Id: I1de4648d80537865c436c9d1963e96d394317332 Reviewed-on: https://code.wireshark.org/review/34250 Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
2019-08-12Qt: Fix drop event for main windowRoland Knall1-0/+12
Make sure, that the main window only recognizes drop events containing text/uri-list mime-types, as those are the only ones containing file drops. All other mime-types (e.g. display filter drops) will be ignored Bug: 15986 Change-Id: Id4338f75c563d2d177d858d2de470db1ab3499f7 Reviewed-on: https://code.wireshark.org/review/34248 Petri-Dish: Roland Knall <rknall@gmail.com> Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
2019-08-11[Automatic update for 2019-08-11]Gerald Combs10-556/+507
Update manuf, services enterprise numbers, translations, and other items. Change-Id: I76c1666b7e0a8df14aef00011b968fedacd6ac9a Reviewed-on: https://code.wireshark.org/review/34228 Reviewed-by: Gerald Combs <gerald@wireshark.org>
2019-08-10Qt: fix wrong default packet list order in Qt 5.13Peter Wu1-1/+2
Workaround a Qt 5.13 bug that made QTreeView::sortByColumn(-1) ineffective and results in sorting rows by the first column in reverse order. This must be called before setModel since that already triggers sorting. Bug: 15979 Change-Id: I86c26959d3cb9dd4118193dcda4b1308cc911290 Reviewed-on: https://code.wireshark.org/review/34226 Petri-Dish: Peter Wu <peter@lekensteyn.nl> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
2019-08-10Qt: Correctly present numerous text on extcapRoland Knall1-0/+1
Change-Id: I21f66e3496d21fc721b3916fe8e94fd0b9d07f51 Reviewed-on: https://code.wireshark.org/review/34227 Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
2019-08-09Qt: Fix numerous translation for extcapRoland Knall1-2/+5
Change-Id: Id7c2b5e2f889775f19e5af1a4906dc82c42e091e Reviewed-on: https://code.wireshark.org/review/34221 Reviewed-by: Roland Knall <rknall@gmail.com>
2019-08-09Qt: Fix coverity issues for profile modelRoland Knall1-3/+2
Change-Id: I59c4f6e6d22ae77934d3c841cd6905c76da76781 Reviewed-on: https://code.wireshark.org/review/34219 Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
2019-08-09Qt: Fix Preference dialog translationRoland Knall8-50/+56
The title names of each section are not presented correctly Bug: 15977 Change-Id: I68ab0fb6fc7131f9d2af67fa38c509ed6808c7d3 Reviewed-on: https://code.wireshark.org/review/34218 Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
2019-08-08Qt: Restructure duplicateEntry to rectify copying issuesRoland Knall1-34/+38
Various issues rose during restructuring which are now being fixed with the help of unittests. Mainly also renaming new profiles and createing copies from them, as well as deleting profiles and keeping copies names Change-Id: I39e1772c7be586fe07ea0613fa9e23d40d864012 Reviewed-on: https://code.wireshark.org/review/34214 Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
2019-08-08Qt: Respect recent values on startupStig Bjørlykke1-1/+1
Do not call showHideMainWidgets() in initShowHideMainWidgets() because this will override loaded recent values on startup. Setting checked and visible based on recent values is done in layoutPanes() and updateRecentActions(). This affects the following View settings: Main Toolbar, Filter Toolbar, Wireless Toolbar, Status Bar, Packet List, Packet Details and Packet Bytes. Also always hide empty_pane because it's never useful to show this. Bug: 15976 Change-Id: Id63b8a5fdd263793a283137134f424d7cb4caf82 Reviewed-on: https://code.wireshark.org/review/34209 Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org> Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
2019-08-08Qt: Remove unnecessary label from default copyRoland Knall1-21/+35
Restructures dataPath for PROF_STAT_COPY to ensure correct labeling of the hintLabel Bug: 15974 Change-Id: I69f61f4f8db74ca52c3b72d32af2b2bb8b19957d Reviewed-on: https://code.wireshark.org/review/34202 Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
2019-08-08Qt: Simplify guard checksRoland Knall2-26/+20
Change-Id: I726dfba29ad75719a128e39190f6deeb9e77ceeb Reviewed-on: https://code.wireshark.org/review/34204 Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
2019-08-06Qt: ProfileModel code cleanupStig Bjørlykke1-11/+3
Remove code which cannot be reached. Remove unused QString variables. Fix indentation. Change-Id: If4616fb5f800f5a87bff6d7571b366a583af62fc Reviewed-on: https://code.wireshark.org/review/34195 Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org> Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
2019-08-05Qt: Fix profile copy with wrong profile nameRoland Knall1-1/+8
Bug: 15967 Change-Id: Ifda13a517fdcfd5a34fd298f08d0714e36301a91 Reviewed-on: https://code.wireshark.org/review/34187 Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
2019-08-05Qt: Better translation textsRoland Knall1-5/+9
Improve text for translation in the profile model Change-Id: If1cb7f4e83c9a45729391ce8a69029d6bc95d87b Reviewed-on: https://code.wireshark.org/review/34188 Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
2019-08-05Qt: Check filename before importRoland Knall2-5/+37
Before the unzipped files are being copied from the temp directory, they are checked against the stored list of profile names, to ensure, that only allowed files are being imported. Also ensures, that no empty directory exists for the skipped one Bug: 15969 Change-Id: I6ae8c9fb5f63d089d42fc0ef18dbe84baec515a2 Reviewed-on: https://code.wireshark.org/review/34184 Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org> Reviewed-by: Roland Knall <rknall@gmail.com>
2019-08-05Qt: Sequence Dialog simplify context menuRoland Knall3-36/+11
And minor UI changes Change-Id: Ieed1e5090c0f5adc6e41b386d9950443b30eb2da Reviewed-on: https://code.wireshark.org/review/34180 Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
2019-08-05Qt: Always store lastdir on profile importStig Bjørlykke1-2/+2
Always store the last used directory when doing profile import, even if no profiles where imported. A new directory may have been used and the user may have selected the wrong .zip file. Change-Id: I7ed9de8b62fa7a57623ffb3e737186f072a82255 Reviewed-on: https://code.wireshark.org/review/34183 Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org> Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
2019-08-05Qt: do not adjust the time origin for empty graphsPeter Wu1-1/+1
If a graph does not contain any visible data (for example, "TCP Errors" in a capture without TCP packets), the start offset is bogus. Ignore it to avoid Time of Day being displayed as 01.01.1970. Bug: 15247 Change-Id: I0e0a113dac6aebd42a4b48b89bbf563e96a8807a Reviewed-on: https://code.wireshark.org/review/34129 Petri-Dish: Peter Wu <peter@lekensteyn.nl> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2019-08-04Qt: Guard no minizip buildRoland Knall1-3/+4
Change-Id: Ib0e4f8343d4acbdde956e35ac37dcf6a2937421f Reviewed-on: https://code.wireshark.org/review/34181 Reviewed-by: Roland Knall <rknall@gmail.com> Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Peter Wu <peter@lekensteyn.nl>
2019-08-04[Automatic update for 2019-08-04]Gerald Combs10-475/+1824
Update manuf, services enterprise numbers, translations, and other items. Change-Id: I8c95eb29066ec1501740545cfd78e5be577a9e7a Reviewed-on: https://code.wireshark.org/review/34177 Reviewed-by: Gerald Combs <gerald@wireshark.org>
2019-08-03Qt: Write recent before exporting profilesStig Bjørlykke1-0/+4
The selected profile may have unsaved recent settings when exported, so write the recent file before exporting to ensure that we save the latest changes. A side effect is that it's now possible to export a newly created profile even if it has only default configuration. Bug: 15965 Change-Id: I7bb6428283789894bd2863e9ddbd130ca56b1219 Reviewed-on: https://code.wireshark.org/review/34172 Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
2019-08-03Correct typo in Extcap-Options-DialogMike782-2/+2
Bug: 15929 Change-Id: Ia68735a4f286e2d13ba2ec1c53b99805533ecff9 Reviewed-on: https://code.wireshark.org/review/34151 Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>