summaryrefslogtreecommitdiff
path: root/ui/qt/capture_filter_edit.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2015-03-04 15:43:33 -0800
committerGerald Combs <gerald@wireshark.org>2015-03-05 20:17:29 +0000
commit8664de017f4c715aa088b27f09a87820cdaf13ed (patch)
tree2b709dea6585c96c86aed132dcc9766cd1598995 /ui/qt/capture_filter_edit.h
parent89270fbe0fd70fda8d27dc3195c00a92a48d675d (diff)
downloadwireshark-8664de017f4c715aa088b27f09a87820cdaf13ed.tar.gz
Qt: Constify a bunch of strings.
Change-Id: I601e429408fc042fc5b18a4750d40e260da47f43 Reviewed-on: https://code.wireshark.org/review/7535 Petri-Dish: Gerald Combs <gerald@wireshark.org> Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'ui/qt/capture_filter_edit.h')
-rw-r--r--ui/qt/capture_filter_edit.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/qt/capture_filter_edit.h b/ui/qt/capture_filter_edit.h
index af4f2ecc62..58e26949bd 100644
--- a/ui/qt/capture_filter_edit.h
+++ b/ui/qt/capture_filter_edit.h
@@ -59,11 +59,11 @@ private:
CaptureFilterSyntaxWorker *syntax_worker_;
signals:
- void pushFilterSyntaxStatus(QString&);
+ void pushFilterSyntaxStatus(const QString&);
void popFilterSyntaxStatus();
void captureFilterSyntaxChanged(bool valid);
void startCapture();
- void addBookmark(QString filter);
+ void addBookmark(const QString filter);
};