summaryrefslogtreecommitdiff
path: root/ui/qt/main_window_slots.cpp
diff options
context:
space:
mode:
authorPeter Wu <peter@lekensteyn.nl>2017-06-19 16:28:10 -0400
committerMichael Mann <mmann78@netscape.net>2017-06-20 13:49:01 +0000
commit4d90f2e092802775e5e3e457768d1c1f4760a1f0 (patch)
treebf9013fd357111694c1bfc8c3e697a627f1c6803 /ui/qt/main_window_slots.cpp
parent3978462fd31665f30432689634812a15c476406b (diff)
downloadwireshark-4d90f2e092802775e5e3e457768d1c1f4760a1f0.tar.gz
Qt: make Wireless Timeline a separate item
Do not put the wireless timeline in the main view with splitters, it has a fixed size anyway and is not taken into account for layout and size calculations for the panes. Bug: 13776 Change-Id: I71da962950c3f1b215908674f4852afa76744343 Reviewed-on: https://code.wireshark.org/review/22242 Petri-Dish: Michael Mann <mmann78@netscape.net> Reviewed-by: Simon Barber <simon.barber@meraki.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'ui/qt/main_window_slots.cpp')
-rw-r--r--ui/qt/main_window_slots.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/ui/qt/main_window_slots.cpp b/ui/qt/main_window_slots.cpp
index dd140229df..b2f849bc9b 100644
--- a/ui/qt/main_window_slots.cpp
+++ b/ui/qt/main_window_slots.cpp
@@ -787,7 +787,7 @@ void MainWindow::captureFileReadStarted(const QString &action) {
main_ui_->statusBar->pushFileStatus(msg, msgtip);
main_ui_->mainStack->setCurrentWidget(&master_split_);
main_ui_->actionAnalyzeReloadLuaPlugins->setEnabled(false);
- wireless_timeline_->captureFileReadStarted(capture_file_.capFile());
+ main_ui_->wirelessTimelineWidget->captureFileReadStarted(capture_file_.capFile());
WiresharkApplication::processEvents();
}
@@ -809,7 +809,7 @@ void MainWindow::captureFileReadFinished() {
updateForUnsavedChanges();
/* enable wireless timeline if capture allows it */
- wireless_timeline_->captureFileReadFinished();
+ main_ui_->wirelessTimelineWidget->captureFileReadFinished();
/* Enable menu items that make sense if you have some captured packets. */
setForCapturedPackets(true);
@@ -2469,17 +2469,17 @@ void MainWindow::on_actionViewNormalSize_triggered()
void MainWindow::on_actionWirelessTimelineZoomIn_triggered()
{
- wireless_timeline_->zoomIn();
+ main_ui_->wirelessTimelineWidget->zoomIn();
}
void MainWindow::on_actionWirelessTimelineZoomOut_triggered()
{
- wireless_timeline_->zoomOut();
+ main_ui_->wirelessTimelineWidget->zoomOut();
}
void MainWindow::on_actionWirelessTimelineZoomFullOut_triggered()
{
- wireless_timeline_->zoomFullOut();
+ main_ui_->wirelessTimelineWidget->zoomFullOut();
}
void MainWindow::on_actionViewColorizePacketList_triggered(bool checked) {