[LyX/master] Used pressed() signal in status bar widgets (fixes #12613)

Juergen Spitzmueller spitz at lyx.org
Sat Dec 24 05:24:14 UTC 2022


commit 064955b151783dd5328d9fa5d98c08c1149d5984
Author: Juergen Spitzmueller <spitz at lyx.org>
Date:   Sat Dec 24 07:20:39 2022 +0100

    Used pressed() signal in status bar widgets (fixes #12613)
---
 src/frontends/qt/GuiView.cpp |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/frontends/qt/GuiView.cpp b/src/frontends/qt/GuiView.cpp
index c88b600..e7a3b29 100644
--- a/src/frontends/qt/GuiView.cpp
+++ b/src/frontends/qt/GuiView.cpp
@@ -644,7 +644,7 @@ GuiView::GuiView(int id)
 		processStop, SLOT(show()));
 	connect(&d.processing_thread_watcher_, SIGNAL(finished()),
 		processStop, SLOT(hide()));
-	connect(processStop, SIGNAL(pressed()), this, SLOT(checkCancelBackground()));
+	connect(processStop, SIGNAL(clicked()), this, SLOT(checkCancelBackground()));
 
 	connect(this, SIGNAL(scriptKilled()), busySVG, SLOT(hide()));
 	connect(this, SIGNAL(scriptKilled()), processStop, SLOT(hide()));
@@ -655,7 +655,7 @@ GuiView::GuiView(int id)
 	stat_counts_->hide();
 	statusBar()->addPermanentWidget(stat_counts_);
 
-	connect(stat_counts_, SIGNAL(pressed()), this, SLOT(statsPressed()));
+	connect(stat_counts_, SIGNAL(clicked()), this, SLOT(statsPressed()));
 
 	zoom_slider_ = new QSlider(Qt::Horizontal, statusBar());
 	// Small size slider for macOS to prevent the status bar from enlarging
@@ -701,8 +701,8 @@ GuiView::GuiView(int id)
 	connect(zoom_slider_, SIGNAL(sliderMoved(int)), this, SLOT(zoomSliderMoved(int)));
 	connect(zoom_slider_, SIGNAL(valueChanged(int)), this, SLOT(zoomValueChanged(int)));
 	connect(this, SIGNAL(currentZoomChanged(int)), zoom_slider_, SLOT(setValue(int)));
-	connect(zoom_in_, SIGNAL(pressed()), this, SLOT(zoomInPressed()));
-	connect(zoom_out_, SIGNAL(pressed()), this, SLOT(zoomOutPressed()));
+	connect(zoom_in_, SIGNAL(clicked()), this, SLOT(zoomInPressed()));
+	connect(zoom_out_, SIGNAL(clicked()), this, SLOT(zoomOutPressed()));
 
 	// QPalette palette = statusBar()->palette();
 


More information about the lyx-cvs mailing list