aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/capture_interfaces_dialog.cpp
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2016-02-28 19:23:20 +0100
committerStig Bjørlykke <stig@bjorlykke.org>2016-02-28 18:25:50 +0000
commit1a716800e37ae482901e9cce36c40005742dd78e (patch)
tree6dc88f72f082fa795646442e086363ff3d2f1b9f /ui/qt/capture_interfaces_dialog.cpp
parentf0425e83a16acabfec103f52099a3f20ea7b35c2 (diff)
Qt: Add dialog geometry restore
Add GeometryStateDialog class to handle load and save dialog geometry. The QDialog class name will be used as window name. For shared classes the UAT name or the statistics title or abbr will be used. Change-Id: I5a019598307fb3861518f41e733de834788184d8 Reviewed-on: https://code.wireshark.org/review/14139 Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
Diffstat (limited to 'ui/qt/capture_interfaces_dialog.cpp')
-rw-r--r--ui/qt/capture_interfaces_dialog.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/qt/capture_interfaces_dialog.cpp b/ui/qt/capture_interfaces_dialog.cpp
index 1dd5e32ec5..a711b8957b 100644
--- a/ui/qt/capture_interfaces_dialog.cpp
+++ b/ui/qt/capture_interfaces_dialog.cpp
@@ -113,10 +113,11 @@ public:
};
CaptureInterfacesDialog::CaptureInterfacesDialog(QWidget *parent) :
- QDialog(parent),
+ GeometryStateDialog(parent),
ui(new Ui::CaptureInterfacesDialog)
{
ui->setupUi(this);
+ loadGeometry();
setWindowTitle(wsApp->windowTitleString(tr("Capture Interfaces")));
stat_timer_ = NULL;