diff options
Diffstat (limited to 'src/mainview.h')
-rw-r--r-- | src/mainview.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/mainview.h b/src/mainview.h index c6f26a66..89cb3553 100644 --- a/src/mainview.h +++ b/src/mainview.h @@ -111,7 +111,13 @@ public slots: * @return a pointer to the new WebView */ WebView *newWebView(bool makeCurrent = true); - void loadUrlInCurrentTab(const KUrl &url); + + /** + * Core browser slot. Load an url in a webview + * + * @param url The url to load + */ + void loadUrl(const KUrl &url); void slotCloneTab(int index = -1); void slotCloseTab(int index = -1); void slotCloseOtherTabs(int index); |