aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/search_frame.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2015-02-06 10:36:27 -0800
committerGerald Combs <gerald@wireshark.org>2015-02-06 23:23:02 +0000
commitb3f3dd8d82d9b651f34886a3293056c612958aa2 (patch)
tree7c893353f68806598cc335b471af7c4f7b4acf4a /ui/qt/search_frame.h
parent3b3ce87899ceaf2a491f29f63ae7c1261d667398 (diff)
Qt: Fix preference change behavior.
Main window: Keep track of our current layout and only change it if the preferences change. This keeps the panes from resizing. Re-select the current packet if the layout changes so that the proto tree and byte view aren't left in an invalid state. This fixes a crash similar to bug 10896. Search frame: Get rid of an invalid error message. Update coding style. I don't think any of these fix bug 10921 since Xiaochuan seems to get a crash immediately upon opening the dialog. Change-Id: I0e880a50d3c9ac1c6ae6a01034b05fd2249444f4 Reviewed-on: https://code.wireshark.org/review/6989 Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'ui/qt/search_frame.h')
-rw-r--r--ui/qt/search_frame.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/qt/search_frame.h b/ui/qt/search_frame.h
index db3b694d60..599209509b 100644
--- a/ui/qt/search_frame.h
+++ b/ui/qt/search_frame.h
@@ -54,14 +54,14 @@ protected:
void keyPressEvent(QKeyEvent *event);
private:
- void enableWidgets();
+ void updateWidgets();
Ui::SearchFrame *sf_ui_;
capture_file *cap_file_;
private slots:
- void on_searchTypeComboBox_currentIndexChanged(int index);
- void on_searchLineEdit_textChanged(const QString &search_string);
+ void on_searchTypeComboBox_currentIndexChanged(int);
+ void on_searchLineEdit_textChanged(const QString &);
void on_findButton_clicked();
void on_cancelButton_clicked();
void changeEvent(QEvent* event);