aboutsummaryrefslogtreecommitdiff
path: root/src/widgets/WebViewStack.hpp
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2025-03-27 13:08:20 +0530
committerAkshay Nair <phenax5@gmail.com>2025-03-28 19:39:52 +0530
commit46a7fee95a010f20490d7f66f0c2c82ed936ca5e (patch)
tree9afcbacfb0cdc22f44fb1c61f196347a391e5bd5 /src/widgets/WebViewStack.hpp
parenta54f6ae81b54ca59bf913bba16f271a35ca08d9d (diff)
downloadnull-browser-46a7fee95a010f20490d7f66f0c2c82ed936ca5e.tar.gz
null-browser-46a7fee95a010f20490d7f66f0c2c82ed936ca5e.zip
Refactor and fix tab id use for focus/close
Diffstat (limited to '')
-rw-r--r--src/widgets/WebViewStack.hpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/widgets/WebViewStack.hpp b/src/widgets/WebViewStack.hpp
index b675af5..9df088e 100644
--- a/src/widgets/WebViewStack.hpp
+++ b/src/widgets/WebViewStack.hpp
@@ -31,12 +31,15 @@ public:
QWebEngineProfile *profile = new QWebEngineProfile,
QWidget *parent = nullptr);
- std::vector<QUrl> urls(); // TODO: Remove
QList<WebViewData> get_webview_list();
WebView *current_webview();
WebViewId current_webview_id();
uint32_t count();
QUrl current_url();
+
+ /// @deprecated TODO: Remove
+ std::vector<QUrl> urls();
+ /// @deprecated TODO: Remove
uint32_t current_webview_index();
protected: