From 73470864b2f7ae34fdf257bc4d566323ef6935ad Mon Sep 17 00:00:00 2001 From: Alexander Sashnov Date: Wed, 26 Jan 2022 15:46:08 +0700 Subject: [PATCH] Make 'TabBar::onCurrentChanged()' slot private --- src/tabbar.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tabbar.h b/src/tabbar.h index 0cebee7..7238690 100644 --- a/src/tabbar.h +++ b/src/tabbar.h @@ -56,7 +56,6 @@ signals: public slots: void closeTab(int index); - void onCurrentChanged(int index); void fullScreenRequested(QWebEngineFullScreenRequest request); void on_webview_titleChanged(const QString& title); @@ -68,6 +67,7 @@ private: private slots: void onTabMoved(int from, int to); + void onCurrentChanged(int index); }; #endif // TABWIDGET_H